-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (44 loc) · 1.87 KB
/
index.html
File metadata and controls
54 lines (44 loc) · 1.87 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luit's Site</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="colorGenerating.js"></script>
</head>
<body>
<h1>Welcome to my Website!</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Another button to go home</a></li>
</ul>
</nav>
<h3>AAAAAAAAAH HOW DOES CSS WORK, also link: <a href="http://luigit12.github.io" target="_blank" rel="noopener noreferrer">luigit12.github.io</a>.</h3>
<h2>Sub Title!</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p><strong>bold</strong> and <em>italic</em></p>
<p>images:</p>
<img src="images/picture1_edited2.jpg" width=10% height=10%>
<p>list:</p>
<div>
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Pear</li>
</ul>
</div>
<p><button onclick="getNiceColors()">Change theme</button></p>
</body>
<footer class="foot">
<ul>
<li>Luit</li>
<li><a href="mailto:luit@luit.cc">luit@disroot.org</a></li>
</ul>
<ul>
<li><a href="http://www.fsf.org/fb"><img src="images/no-facebook.png" width="150" height="47" alt="Not f'd — you won't find us on Facebook"></a></li>
</ul>
</footer>
</html>