HyperText Markup Language
<html>
<head>
</head>
<body>
</body>
</html>
Cascading Style Sheets
<!-- External Style Sheet -->
<head>
<link rel="stylesheet" type="text/css" href="link-to-css-file.css">
</head>
<!-- Internal Style Sheet -->
<head>
<style>
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
<!-- Inline -->
<h1 style="color:blue;margin-left:30px;">This is a heading</h1>
Tag name
Class
Id