Introduction

Introduction

A Chapter by Brandon Lockman

HTML stands for Hypertext Markup Language.  It is the programming language that makes up the entire web.  The best part about HTML is that it is not hard to learn, unlike programing languages like C++, C#, and BrainF***.  

You start HTML code like this (Basic version)

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

Here is a more complex version

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Page Title</title>
<body>

Simply, you end an HTML program by writing:
  
  </body>
</html>

The greater than/less than symbols start and end a tag.  An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page. At the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web.  


© 2021 Brandon Lockman


My Review

Would you like to review this Chapter?
Login | Register




Reviews

• It is the programming language that makes up the entire web.

If you ignore CSS, of course. And Java, which is more popular. And of course, browsers want Javascript. And...

Posted 3 Years Ago



Share This
Email
Facebook
Twitter
Request Read Request
Add to Library My Library
Subscribe Subscribe

Advertise Here
Want to advertise here? Get started for as little as $5

Stats

18 Views
1 Review
Added on May 18, 2021
Last Updated on May 18, 2021