simply use notepad or any html editor and create a file any name basically main file name is index.html or index.htm and type following lines
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>Your Page Title Here...</title>
</head>
<body>
<h1>Heading of Your Page</h1>
<p>Detail Pergraph Of Web Page</p>
</body>
</html>
<!DOCTYPE html>
these type of word used in html and called tag every tag start with <tag name..> simply and end with </tag name>
eg. <html> end with </html>
Three main section in html page
first is top part covered with <html> which is as big as page.
other tag store in this area
first top area for special tags like meta tag, utf setting etc and include css files(for special formating), java script external files etc.
Then start <head> and which is also end with </head>
in this portion include page title tag
<title>your page title</title>
inbound css command and java script command written here.
<style> css commands </style>
<script> java commands...</script>
after that center part is <body> which is also end with </body>
in this portion all matter include of web page. which work with different tags.
<!DOCTYPE html>
<html>
<head>
<title>Your Page Title Here...</title>
</head>
<body>
<h1>Heading of Your Page</h1>
<p>Detail Pergraph Of Web Page</p>
</body>
</html>
Comments
Post a Comment