Linking HTML with CSS file
HTML file
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="ExternalStyleSheet.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linking</title>
</head>
<body>
<h1>hellooooooooooo!!!!!</h1>
</body>
</html>
CSS file
h1{
color: aqua;
background-color: black;
}
Comments
Post a Comment