Csswithhtml 5
Csswithhtml 5
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- internal css -->
<style>
p{
color:white;
background-color: burlywood;
}
h1,h2,h3,h4,h5,h6{
color: green;
background-color: yellow;
}
</style>
</head>
<body style="background-color: rgb(18, 25, 25);">
<!--
html => hyper text markup langauge
tags=> h1,h2,p(paragraph),input(make a input box),table,ol,ul
-->
<!-- this is a heading tag
six types of heading tag
<h1>data<h1> to <h6>data</h6>
-->
</body>
</html>