blob: b2cc97071babcd8416e745977c5a454a661af5d6 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Luhamus </title>
<link href="css/style.css" rel="stylesheet"/>
</head>
<body>
<div class="main-image">
<div class="img-container">
<h1><span>Luhamus</span></h1>
</div>
</div>
<nav>
<a href="/">Home</a>
<a href="about">About</a>
<a href="">Git</a>
<a href="contact">Contact</a>
</nav>
<hr/>
<section class="section">
<div class="container">
<h2>Hello and Welcome!</h2>
<p>My name is Rasmus. I am studying Computer Science and Physics</p>
<p>This site has many purposes. It serves somewhat as the replacement for my social-media,
it hosts my Git and E-mail server, and some other cool stuff aswell.
So, Go on, have a look around!</p>
<div class="index-content">
<div class="right">
<h3>Food for Thought</h3>
<span><i>Coming Soon</i></span>
</div>
<div class="left">
<h3>Corner of Cool</h3>
<figure>
<img alt="cool gif" src="/img/gif/2.gif"/>
<figcaption><i><small>some space thing</small></i></figcaption>
</figure>
</div>
</div>
</div>
</section>
<hr/>
<footer>© Here is the very important Footer 2022</footer>
</body>
</html>
|