-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
216 lines (189 loc) · 7.27 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Theme Made By www.w3schools.com - No Copyright -->
<title>Learning Coding</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<style>
body {
font: 20px Montserrat, sans-serif;
line-height: 1.8;
color: #111107;
}
p {
font-size: 16px;
}
.margin {
margin-bottom: 45px;
}
.bg-1 {
background-color: #f8b3e7;
/* Green */
color: #ffffff;
}
.bg-2 {
background-color: #475d4c;
/* Dark Blue */
color: #ffffff;
}
.bg-3 {
background-color: #ffffff;
/* White */
color: #555555;
}
.bg-4 {
background-color: #2f2f2f;
/* Black Gray */
color: #fff;
}
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
.navbar {
padding-top: 15px;
padding-bottom: 15px;
border: 0;
border-radius: 0;
margin-bottom: 0;
font-size: 12px;
letter-spacing: 5px;
}
.navbar-nav li a:hover {
color: #1abc9c !important;
}
/* The side navigation menu */
.sidenav {
height: 100%;
/* 100% Full-height */
width: 0;
/* 0 width - change this with JavaScript */
position: fixed;
/* Stay in place */
z-index: 1;
/* Stay on top */
top: 0;
/* Stay at the top */
left: 0;
background-color: rgb(212, 180, 216);
/* Black*/
overflow-x: hidden;
/* Disable horizontal scroll */
padding-top: 60px;
/* Place content 60px from the top */
transition: 0.5s;
/* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 15px;
color: hsl(0, 4%, 5%);
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s;
padding: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
</style>
</head>
<body>
<script>
/* Set the width of the side navigation to 250px */
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
/* Set the width of the side navigation to 0 */
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<!-- Navbar -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a class="navbar-brand" href="11960265_956909734370999_8565732972982908584_n.jpg">ProfilePic</a><br></br>
<a href="Chapter4/Chapter4.html">Bubbles</a>
<a href="Chapter5/Chapter5.html">HTML Homepage</a>
<a href="Chapter6/Chapter6.html">Robot Style</a>
<a href="Chapter7/Chapter7.html">Animated Robot</a>
<a href="Chapter8/Chapter8.html">DreamCar</a>
<a href="Chapter9/Chapter9.html">Super-Calculator</a>
<a href="Chapter10/Chapter10.html">Word Replacement Game</a>
<a href="Chapter11/Chapter11.html">Array Methods</a>
<a href="Chapter121/Chapter121.html">Function Junction</a>
<a href="Chapter13/Chapter13.html">Wish List</a>
<a href="Chapter14/Chapter14.html">JavaScript Pizzeria</a>
<a href="Chapter15/Chapter15.html">Activity of the Day</a>
<a href="Chapter16/Chapter16.html">Rescue on Mars</a>
<a href="Chapter17/Chapter17.html">Weather Forecast</a>
<a href="ShoppingCart/shopStart.html">ShoppingCart</a>
</div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()">Lucky</span>
<!-- First Container -->
<div class="container-fluid bg-1 text-center">
<h3 class="margin">Who Am I?</h3>
<img src="DSC_8268.JPG" class="img-responsive img-circle margin" style="display:inline" alt="Bird" width="350" height="350">
<h3>I'm new at "this coding thing"</h3>
</div>
<!-- Second Container -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin">What Am I?</h3>
<p>I'm trying to get the hang of it but I really need some time. I need to understand in depth what .js, .css and .html does. </p>
<a href="#" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-search"></span> Search
</a>
</div>
<!-- Third Container (Grid) -->
<div class="container-fluid bg-3 text-center">
<h3 class="margin"> More About Me</h3><br>
<div class="row">
<div class="col-sm-4">
<p> Moon over Jo'burg City</p>
<img src="DSC_8706.JPG" class="img-responsive margin" style="width:100%" alt="Image">
</div>
<div class="col-sm-4">
<p> Sunset over Jo'burg City</p>
<img src="DSC_8714.JPG" class="img-responsive margin" style="width:100%" alt="Image">
</div>
<div class="col-sm-4">
<p>Night Light over Jo'burg City</p>
<img src="DSC_8718.JPG" class="img-responsive margin" style="width:100%" alt="Image">
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid bg-4 text-center">
<p>Page By <a href="https://www.w3schools.com">Lucky</a></p>
</footer>
</body>
</html>