-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·52 lines (43 loc) · 1.25 KB
/
about.html
File metadata and controls
executable file
·52 lines (43 loc) · 1.25 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
<!DOCTYPE html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<html>
<body>
<!-- Navigation bar -->
<div class="navigation">
<div id="doge-logo"><img src="images/doge.jpg"></div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- Start main content -->
<div class="container">
<!-- Main Heading -->
<h1>About Me</h1>
<!-- Ordered List -->
<ol>
<li>Doge</li>
<li>More Doge</li>
<li>Extra Doge</li>
</ol>
<!-- Line breaks for extra space -->
<br><br>
<button id="hide-doge">Hide Doge</button>
<button id="show-doge">Show Doge</button>
<button id="toggle-doge">Toggle Doge</button>
<button id="fade-doge">Toggle Fade Doge</button>
<button id="grow-doge">Grow Doge</button>
<button id="shrink-doge">Shrink Doge</button>
<br>
<!-- <button id="hide-doge">Hide Doge</button> -->
<!-- Doge image with width restricted to 300px -->
<img src="images/doge_bagel.jpg" width="300" id="bagel-doge">
</div>
<script src="js/script.js"></script>
</body>
</html>