-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<header>
<h1>Philip Rausch</h1>
<nav id="nav">
<li><a href="#about-me">About Me</a></li>
<li><a Skills href="#skills">Skills</a></li>
<li><a Contact href="#contact">Contact</a></li>
</nav>
</header>
<main>
<section id="about-me">
<h2>About me</h2>
<p>
Hi and welcome to my personal website (currrently under heavy
construction).
</p>
<p>
<img
src="https://media.istockphoto.com/id/173899753/de/foto/m%C3%BCde-red-panda.jpg?s=1024x1024&w=is&k=20&c=PN5F4jcTHvyEx-mNuBCxXJf9ziRymn-iGOocw1066Zk="
alt="Not a picture of me"
height="200"
/>
<figcaption>That's not me.</figcaption>
</p>
</section>
<section id="skills">
<h2>Skillset</h2>
<!--This part could use some bulletpoint to be more structured-->
<ul>
<li>to</li>
<li>be</li>
<li>announced</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<a href="https://github.com/philrwebdev">
<img src="/assets/github-mark.png" />
GitHub
</a>
</section>
</main>
</body>
</html>