Designing in HTML
Reading Time: 1 minute
HTML is the World Wide Web’s core markup language. Originally, HTML was primarily designed as a language for semantically describing scientific documents. Its general design, however, has enabled it to be adapted, over the subsequent years, to describe a number of other types of documents and even applications.
<!DOCTYPE html>
<html>
<head>
<title>Introduction</title>
</head>
<body>
<h1>Introduction to HTML</h1>
<p>
Designing documents and websites with HTML is awesome.
What You See Is What You Get!
</p>
</body>
</html>