forked from jonasschmedtmann/complete-javascript-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (27 loc) · 953 Bytes
/
index.html
File metadata and controls
executable file
·34 lines (27 loc) · 953 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
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Section 7: Get Ready for the Future: ES6 / ES2015</title>
<style>
.box {
width: 200px;
padding: 25px 80px;
text-align: center;
font-size: 30px;
margin-top: 30px;
}
.green { background-color: green; }
.blue { background-color: dodgerblue; }
.orange { background-color: orangered; }
</style>
</head>
<body>
<h1>Section 7: Get Ready for the Future: ES6 / ES2015</h1>
<div class="box green">I'm green!</div>
<div class="box blue">I'm blue!</div>
<div class="box orange">I'm orange!</div>
<script src="polyfill.min.js"></script>
<script src="script-transpiled.js"></script>
</body>
</html>