what is html element?
ReportQuestion
3 years ago 780 views
The HTML element is everything from the start tag to the end tag: <tagname>Content goes here...</tagname>
<!DOCTYPE html>
<html>
<head>
<title>WebPage</title>
</head>
<body>
<h1>This is my first web page</h1>
<h2>How are you?</h2>
<p>I am good!!!!!</p>
</body>
</html>
Thread Reply