HTML Story


What is HTML

HTML means HyperText Markup Language . It is not a programming language but it is the boss of web front-end . It describes and defines the content of a webpage . HTML builds a modern web site design with CSS & JS .

~ html code = open tag(<h1>) and close tag (</h1>) . ex: <h1>....</h1> . tag consist on angle <> .

Touch it

HTML Basic code

<!DOCTYPE html>
<html>
<head>
<!-- Document metadata -->
<meta charset="utf-8">
<title> This is a title</title>
</head>
<body>
<!-- Document content -->
<p>Hello HTML Master</p>
</body>
</html>

Linked css

<link rel="stylesheet" type="text/css" href="https://hellolaravel.org/css/index.css">

<head>
<meta charset="utf-8">
<title> This is a title</title>
<style media="screen">
/*All style here*/
</style>
</head>

Linked JS