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
Leave a Comment