-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenge1.html
More file actions
31 lines (29 loc) · 851 Bytes
/
challenge1.html
File metadata and controls
31 lines (29 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="preload" href="dist/assets/style.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="dist/assets/style.min.css">
</noscript>
<title>Challenge - CSS Grid</title>
</head>
<body>
<div class="challenge">
<header class="header">
Header
</header>
<div class="smallbox-1">Small Box 1</div>
<div class="smallbox-2">Small Box 2</div>
<div class="smallbox-3">Small Box 3</div>
<main class="main">Main Content</main>
<div class="sidebar">Sidebar</div>
<footer class="footer">
Footer
</footer>
</div>
<!--<script type="module" src="src/js/main.js" defer></script>-->
</body>
</html>