-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtricks.html
More file actions
32 lines (30 loc) · 1 KB
/
tricks.html
File metadata and controls
32 lines (30 loc) · 1 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
<!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>Tricks!</title>
</head>
<body>
<h1>Butters can do tricks!</h1>
<div>
<video width="75%" controls>
<source src="wrestling.mp4" type="video/mp4">
If you see this, that means video playing failed...
</video>
<br>
His specialty is getting humped in the face by Oski...
</div>
<br>
<div>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'index.html';">Homepage</button>
<br><br>
<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 = 'treats.html';">Treats!</button>
</div>
</body>
<script>
</script>
</html>