-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<title>Home</title>
</head>
<body>
<div class=header>
<h1>pomehage</h1>
</div>
<span class="rainbow-text" style="font-size: 3em">welcome to dairy queen what can i get for you</span><br>
<img src="images/burger.jpg" alt="burger hat" style="width:40%; display: block; margin-left: auto; margin-right: auto; margin-top:1.5em"><br>
I guess I have to make a webpage here. I don't really have much in the way of like, ideas or creative drive but I can throw a little something together I guess. See the German instrument below for navigation.
<span style="font-size: larger"><strong>Navigation</strong> (in accordion to bootstrap requirement)</span>
<div class="accordion" id="accordionExample">
<div class="accordion-item bg-dark text-white">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button bg-dark text-white" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Cats
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
You should visit this page to see various pictures of my cats. It is the best page. <br>
<a href="cats.html" class="btn btn-primary">Enter Now!</a>
</div>
</div>
</div>
<div class="accordion-item bg-dark text-white">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed bg-dark text-white" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Portfolio
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
This page has like some mods for games I've made idk <br>
<a href="portfolio.html" class="btn btn-primary">DOWNLOAD FOR FREE</a>
</div>
</div>
</div>
<div class="accordion-item bg-dark text-white">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed bg-dark text-white" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Rant
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
You know, I actually started getting into this more than I expected. I was, you know what just read it on the other page<br>
<a href="rant.html" class="btn btn-primary">whatever</a>
</div>
</div>
</div>
</div>
<footer><hr>
shoutouts to simpleflips
</footer>
</body>
</html>