Posts

Showing posts from September, 2024

Add a day or increase day in a date in Django.

  # Convert the end_date to a date object and add 1 day to make it inclusive    parsed_end_date = parse_date(end_date)   adjusted_end_date = parsed_end_date + timedelta(days= 1 )

Basic Web Design with HTML and CSS

Image
Webpage A  web page  or  webpage  is a document, commonly written in  HTML , that is viewed in an Internet  browser . A web page can be accessed by entering a  URL  address into a browser's  address bar . A web page may contain text, graphics, and  hyperlinks  to other web pages and files.   WebSite : A website is a collection of several web pages. These pages are linked together with hyperlinks. A website has a unique domain name, and we can access it by entering that domain name in the URL. A domain name is a string of characters that identifies a website. It is what users type in their browser to visit your site.   Web hosting is a service that provides space on a server for your website files, allowing it to be available on the internet. When visitors access your domain name, the hosting provider will transfer those files to their web browsers.   Two types of website Static website ...