Intro to HTML
A web page is a file that ends in html (hyper-text markup language). A browser renders its contents into a web page.
<title>Awesome Website</title>HTML, Head and Body
Hello Word
<html>
<head>
<title>Hello World</title>
</head>
<body>
Hello World
</body>
</html>Creating Your First HTML File





Last updated
Was this helpful?