1).What is HTML?
HTML is a markup language for creating web pages.- HTML stands for Hyper Text Markup Language
- A markup language is a set of markup tags
- HTML documents are described by HTML tags
- Each HTML tag describes different functions.
Example of an HTML code!
<!DOCTYPE html>
< html>
<head>
<title>Page Title</title>
</head>
< body>
<h1>my first code</h1>
<p>My first page.</p>
</body>
</html>
< html>
<head>
<title>Page Title</title>
</head>
< body>
<h1>my first code</h1>
<p>My first page.</p>
</body>
</html>
No comments:
Post a Comment