-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 802 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 802 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
<!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="styles.css">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<main> <!--MAIN has a height of 100vh-->
<section class="w-64 h-32" id="example">
Fixed units
</section>
<!-- CHALLENGE 1: Make this section 100% of the viewport height -->
<section class="h-screen">
Percentage units
</section>
<!-- CHALLENGE 2: Make this section 1/3 height and
1/2 width of the parent container's -->
<section class="h-1/3 w-1/2">
Viewport units
</section>
</main>
<script src="hello.js"></script>
</body>
</html>