summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlolmao <lolmao@noreply.gov>2023-10-27 11:21:16 -0500
committerlolmao <lolmao@noreply.gov>2023-10-27 11:21:16 -0500
commitf813bcc4fe003f8619f97bc307bd1c60929caa0e (patch)
treec14d4a46355760102d9de6708f4ac2f08ad04572
parentacd03d7a66fa2b14e125f5660274aafb355c92c2 (diff)
Create the chungoid
-rw-r--r--acknowledgements.html2
-rw-r--r--images/chungoid.jpgbin0 -> 8191 bytes
-rw-r--r--index.css15
-rw-r--r--index.html4
4 files changed, 19 insertions, 2 deletions
diff --git a/acknowledgements.html b/acknowledgements.html
index d5704cd..1dd264d 100644
--- a/acknowledgements.html
+++ b/acknowledgements.html
@@ -15,7 +15,7 @@
15 <body> 15 <body>
16 <header id="top-bar"> 16 <header id="top-bar">
17 <nav> 17 <nav>
18 <a href="index.html"><h1>Da Bikers</h1></a> 18 <h1><a href="index.html">Da Bikers</a></h1>
19 </nav> 19 </nav>
20 </header> 20 </header>
21 21
diff --git a/images/chungoid.jpg b/images/chungoid.jpg
new file mode 100644
index 0000000..ba8b83f
--- /dev/null
+++ b/images/chungoid.jpg
Binary files differ
diff --git a/index.css b/index.css
index da9a17e..df799d6 100644
--- a/index.css
+++ b/index.css
@@ -58,4 +58,19 @@ body {
58 58
59ul li { 59ul li {
60 list-style-type: '- '; 60 list-style-type: '- ';
61}
62
63#chung {
64 animation: rotation 1s;
65 animation-timing-function: linear;
66 animation-iteration-count: infinite;
67}
68
69@keyframes rotation {
70 from {
71 transform: rotate(0deg);
72 }
73 to {
74 transform: rotate(359deg);
75 }
61} \ No newline at end of file 76} \ No newline at end of file
diff --git a/index.html b/index.html
index 4e85a41..fadd298 100644
--- a/index.html
+++ b/index.html
@@ -15,13 +15,15 @@
15 <body> 15 <body>
16 <header id="top-bar"> 16 <header id="top-bar">
17 <nav> 17 <nav>
18 <a href="index.html"><h1>Da Bikers</h1></a> 18 <h1><a href="index.html">Da Bikers</a></h1>
19 </nav> 19 </nav>
20 </header> 20 </header>
21 21
22 <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>
23 <p>wtf do I put here lol</p> 23 <p>wtf do I put here lol</p>
24 24
25 <img id="chung" src="images/chungoid.jpg" alt="the chungoid in action" style="width:50%; height: 200px">
26
25 <footer> 27 <footer>
26 <nav> 28 <nav>
27 <li><a href="acknowledgements.html">Acknowledgements</a></li> 29 <li><a href="acknowledgements.html">Acknowledgements</a></li>