How to create an HTML page
Hi, Guys
However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).
We believe using a simple text editor is a good way to learn HTML.
Follow the four steps below to create your first web page with Notepad or TextEdit.
How to create an HTML page::::::
1. Open notepad
2. Copy following
things under below
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
3.Save it as index.html(you cn change name index but .html is must).
Comments
Post a Comment