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