-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaLessonOne.html
More file actions
61 lines (53 loc) · 1.3 KB
/
Copy pathaLessonOne.html
File metadata and controls
61 lines (53 loc) · 1.3 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Html Homework</title>
</head>
<style>
body{
background-color: #40414e;
}
.container{
width: 400px;
margin: 0 auto;
text-align: center;
}
.box {
width: 300px;
height: 200px;
background-color: #f30a0a;
border: 3px solid #229427;
display: inline-block;
margin: 10px;
text-align: center;
line-height: 200px;
}
.box2{
width: 300px;
height: 200px;
background-color: #101dd1;
border: 3px solid #faf602;
display: inline-block;
margin: 10px;
text-align: center;
line-height: 200px;
}
</style>
<script>
function next() {
window.location.href = "aLessonTwo.html";
}
</script>
<body>
<div class="container">
<h2 style="color: aquamarine;">Html Homework 😁</h2>
<div class="box">Box 1</div>
<div class="box2">Box 2</div>
<h2 style="color: aqua;">Visual representation of the boxes</h2>
<h4>Pages(1:7)</h4>
<button onclick="next()">Next page ➡</button>
</div>
</body>
</html>