-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (59 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dog Fancy Event</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="bootstrap-stylesheet">
</head>
<body>
<header>
<h1>Dog Fancy Event</h1>
<p>The Fanciest dog Event.</p>
</header>
<br>
<nav id="topnav">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Locations</a>
</li>
<li>
<a href="#">RSVP</a>
</li>
</ul>
</nav>
<div id="content">
<h1>Dog Fancy Event 2023</h1>
<button type="button" class="btn btn-outline-success" id="get_cat">click to get image</button>
<p id="event">The 115th annual Cat Fancy Event is being held in New York City on December 21st. This is the fanciest dogent of the year, starring over 300 different dogs. This event was made to show America how great cats really are. There will be treats at
the walk in, and for the dog owners there will be a buffet in the lounge. We thank you for coming to our event site, and hope to see you on December 21st. Thank you.</p>
<br>
<ul id="list">
</ul>
<p id="info ">These dogs will be the showrunners this year. George has a long history in dogevents, and is looking forward to this year's dogFancy Event. Sam is a world-class runner, and will be showing his new techniques. Doug likes to lay around, and will
practice his abilities. Sally was invited because her mom made a fit about not coming.</p>
</div>
<br>
<footer>
<nav class="footernev">
<ul>
<li><a href="# ">Home</a></li>
<li><a href="# ">About</a></li>
<li><a href="# ">Locations</a></li>
<li><a href="# ">RSVP</a></li>
</ul>
</nav>
<p>©-copyright 2023</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/axios@1.1.2/dist/axios.min.js "></script>
<script src="app.js "></script>
</body>
</html>