50projects50days/random-image-generator/index.html
Hersonmei 893b09c2eb
Add class="title"
The style.css file has the class title, but that class was not in the index.html file
2021-12-10 15:24:33 -03:00

16 lines
387 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Random Image Feed</title>
</head>
<body>
<h1 class="title">Random Image Feed</h1>
<div class="container"></div>
<script src="script.js"></script>
</body>
</html>