|
An element consists of three basic parts: an opening tag, the element's content, and finally, a closing tag.
- <p> - opening paragraph tag
- Element Content - paragraph phrase
- </p> - closing paragraph tag
HTML Element
Head Element
| <html>
<head>
</head>
</html>
|
Title Element
| <html>
<head>
<title>My Web Page Title</title>
</head>
</html>
|
Body Element
| <html>
<head>
<title>My Web Page Title</title>
</head>
<body>
Hello World!
</body>
</html>
|
|