HTML referring to hypertext markup language. This is basic of web design for beginners. If you learn any language like as PHP, JavaScript, C++, Dot net and other. But must be learned html basic program.
★ How To Configure Static IP address On Ubuntu 18.04
★ How To Install OsTicket On Ubuntu 16.04
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
So I want to describe this code how it works.
Step #01: <!DOCTYPE html> is new html5 tag. It is used for any html5 static page on the top.
Step #2: <html> tag contains all other tag. So this main tag of html 5. It is used open and close tag </html>.
Step #03: Next <head> tag. This tag used for page head include page title and style.css script file etc. html5 any tag contains open tag <head> and close tag </head>
Step #04: <title> tag contains title tag. Title tag is contains page title.
Step #05: Start <body> tag. Body tag include all contents.
If you can create static or dynamic web site so you can first needed to markup that means using html5.
Final Step : Goto then copy all html text on the left side. So open notepad file past all text and save with file extension index.html
- How To Install Zabbix Server 6.4 On AlmaLinux 8 Server - August 9, 2024
- How To Clear RAM Memory Cache Buffer Linux Server - February 29, 2024
- How To Install Apache Cloud Stack Management Server 4.17 On Ubuntu 22.04 - February 1, 2024
Leave a Comment