summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--acknowledgements.html34
-rw-r--r--index.css33
-rw-r--r--index.html16
3 files changed, 72 insertions, 11 deletions
diff --git a/acknowledgements.html b/acknowledgements.html
new file mode 100644
index 0000000..d5704cd
--- /dev/null
+++ b/acknowledgements.html
@@ -0,0 +1,34 @@
1<!DOCTYPE html>
2<html lang="en-US">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta name="author" content="Da Biker's Head Admin">
7
8
9 <base href=".">
10 <link rel="stylesheet" href="./index.css">
11
12 <link rel="icon" type="image/x-icon" href="./images/sketty.jpeg">
13 <title>Da Bikers | Acknowledgements</title>
14 </head>
15 <body>
16 <header id="top-bar">
17 <nav>
18 <a href="index.html"><h1>Da Bikers</h1></a>
19 </nav>
20 </header>
21
22 <h1>Acknowledgements</h1>
23 <p>Fonts used:</p>
24 <ul>
25 <li>Schizoid Personality, by <a href="http://www.woodcutter.es">WOODCUTTER</a></li>
26 <li>Courier Polski 1941, by <a href="https://www.dafont.com/profile.php?user=409273">Tomasz Skowronski</a></li>
27 </ul>
28
29 <footer>
30 <nav>
31 </nav>
32 </footer>
33 </body>
34</html>
diff --git a/index.css b/index.css
index 697da8e..da9a17e 100644
--- a/index.css
+++ b/index.css
@@ -20,23 +20,42 @@
20 20
21 21
22body { 22body {
23 text-align:center; 23 padding: 0;
24 padding: 0px; 24 margin: 0;
25 margin: 0px;
26} 25}
27 26
28#header { 27#top-bar {
28 padding: 0.5%;
29
29 background-image: url(images/sketty.jpeg); 30 background-image: url(images/sketty.jpeg);
30 background-size: cover; 31 background-size: cover;
32
33 /*background-color: red;*/
34
31 position: -webkit-sticky; 35 position: -webkit-sticky;
32 position: sticky; 36 position: sticky;
33 top: 0; 37 top: 0;
34 38
35 display: inline-block; 39 display: inline-block;
36 width: 100%; 40 width: 99%; /* This is bullshit */
37} 41}
38 42
39#header h1 { 43#top-bar h1 {
44 padding: 0;
45 margin: 0;
46
47 position: inherit;
48
40 text-align: left; 49 text-align: left;
41 font-family: 'schizoid_personalityregular'; 50 font-family: 'schizoid_personalityregular', 'zai_courier_polski_1941Rg', Courier, monospace;
51 font-size: 500%;
52}
53
54#top-bar a {
55 color: inherit;
56 text-decoration: none;
42} 57}
58
59ul li {
60 list-style-type: '- ';
61} \ No newline at end of file
diff --git a/index.html b/index.html
index a914b5e..4e85a41 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,8 @@
3 <head> 3 <head>
4 <meta charset="UTF-8"> 4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta name="author" content="Da Biker's Head Admin">
7
6 8
7 <base href="."> 9 <base href=".">
8 <link rel="stylesheet" href="./index.css"> 10 <link rel="stylesheet" href="./index.css">
@@ -11,13 +13,19 @@
11 <title>Da Bikers</title> 13 <title>Da Bikers</title>
12 </head> 14 </head>
13 <body> 15 <body>
14 <div id="header"> 16 <header id="top-bar">
15 <nav> 17 <nav>
16 <h1>Da Bikers</h1> 18 <a href="index.html"><h1>Da Bikers</h1></a>
17 </nav> 19 </nav>
18 </div> 20 </header>
19 21
20 <h1>We do a little trolling it's called we do a little trolling</h1> 22 <h1>We do a little trolling it's called we do a little trolling</h1>
21 <p>why tf my css rules not updating bro</p> 23 <p>wtf do I put here lol</p>
24
25 <footer>
26 <nav>
27 <li><a href="acknowledgements.html">Acknowledgements</a></li>
28 </nav>
29 </footer>
22 </body> 30 </body>
23</html> 31</html>