Designing and Building Websites: Lesson 1, A Basic Introduction of HTML
HyperText Markup Language, commonly known as HTML, is the mark-up language for describing web documents; and to create visually engaging webpages and user interfaces for web applications.
HTML basically stands for Hyper Text Markup Language and a markup language is the set of markup tags. HTML documents are described by HTML tags and each HTML tag describes different document content. HTML describes the structure of a Website semantically making it a markup language, rather than a programming language.
Below is an example of an HTML document.
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>First Heading</h1>
<p>first paragraph.</p>
</body>
</html>
Preview:
Stay connected, this is totally a basic info about HTML. With lesson 2 we'll introduce you something more about markup like HTML elements, attributes and doctype.
Post a Comment