this is css post
Showing posts with label css. Show all posts
Showing posts with label css. Show all posts
Sunday, January 17, 2016
Thursday, October 1, 2015
Website by HTML5
10:51 AM / by Unknown / in css, html5 / with No comments /
You can write HTML code in word pad, notepad, notepad++, DW etc. But I like to use Notepad++.
At first you have to take a new page in HTML format (index.html), I mean file's extension will be ".html". Now open it with notepad++.
HTML opening tag is <html> and closing tag is </html>. All code will be written between the middle <html> and </html>. For HTML, your main format:
<html>
<head>
<title>.....</title> </head>
<body>
.......
</body>
</html>

<!DOCTYPE HTML>
<html lang="en-US">
<title></title>
</head>
<body>
</body>
</html>
At first you have to take a new page in HTML format (index.html), I mean file's extension will be ".html". Now open it with notepad++.
HTML opening tag is <html> and closing tag is </html>. All code will be written between the middle <html> and </html>. For HTML, your main format:
<html><head>
<title>.....</title> </head>
<body>
.......
</body>
</html>
And in HTML5, your code format:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8"><title></title>
</head>
<body>
</body>
</html>
Subscribe to:
Posts (Atom)