0
How to creat a page using html
3 Answers
+ 2
Your question is not clear.
+ 2
Maybe like this đ
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
h1{
color: #e2e2e2;
}
body{
background-color: #444444;
}
.Harsh{
color: #777777;
}
</style>
</head>
<body>
<h1>
Hello,
</h1>
<div class="Harsh">
This is what you could call a website
<br>
have fun. :)
</div>
</body>
</html>
0
Finish sololearn html and csd lessons and you'll know.