testhtml.html
· 291 B · HTML
Raw
<!doctype html>
<html>
<head>
<title>This is the super title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>
| 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>This is the super title of the webpage!</title> |
| 5 | </head> |
| 6 | <body> |
| 7 | <p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> |
| 8 | </body> |
| 9 | </html> |