-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.03 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<!-- Below is my own styles.css -->
<link href="ButtersStyles.css"rel="stylesheet">
<title>Butters</title>
</head>
<body>
<h1>Butters' Very Own Episode!</h1>
<div>
<img src="Butters.jpg" alt="butter boy!" style="width:70%">
</div>
<br>
<div>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'bff.html';">BFFs!</button>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'tricks.html';">Tricks!</button>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'treats.html';">Treats!</button>
</div>
<br>
<footer>
Send fan mail to <a href="mailto:fakeyfake@fake.com">The Pooper Picker Upper</a><br>
For more info, visit <a href="http://southpark.cc.com/" target="_blank">Butter's Homeland</a>
</footer>
</body>
</html>