forked from john-smilga/javascript-nuggets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 826 Bytes
/
index.html
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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Nuggets</title>
<link rel="stylesheet" href="../global.css" />
<style>
body {
min-height: 130vh;
}
h1 {
text-align: center;
}
.btn {
display: block;
width: 200px;
margin: 0 auto;
margin-top: 3rem;
}
.box {
width: 150px;
height: 150px;
background: grey;
/* margin: 0 auto; */
margin-top: 4rem;
margin-left: -1rem;
}
</style>
</head>
<body>
<h1>Width/Height</h1>
<button class="btn">Get Dimensions</button>
<div class="box"></div>
<script src="./app.js"></script>
</body>
</html>