Practice 1
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h2>Hi there !</h2>
<p>My name is Tom & I am there to help you.</p>
<button>Need Help</button>
</body>
</html>
p{
color: aliceblue;
background-color: black;
}
h2{
color: orange;
}
button{
color: aquamarine;
background-color: darkkhaki;
}
Comments
Post a Comment