-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (71 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Pontus Schuster Tengnäs</title>
<meta charset="UTF-8">
<meta name="keywords" content="Pontus Schuster Tengnäs">
<meta name="description" content="Pontus Schuster Tengnäs">
<meta name="author" content="Pontus Schuster Tengnäs">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
:root {
--main: #756DFF;
--secondary: #756DFF;
}
body {
font-family: system-ui;
padding: 10%;
}
a:link {
color: var(--main);
text-decoration: unset;
}
a:visited {
color: var(--secondary);
}
h1 {
font-size: 46px;
}
ul {
list-style-type: none;
padding-inline-start: 0;
}
@media screen and (max-width: 600px) {
img {
width: 160px;
height: 160px;
}
}
@media screen and (min-width: 600px) {
img {
width: 190px;
height: 190px;
}
}
</style>
<body>
<a href="index.html" rel="noreferrer">
<img src="me.webp" alt="Pontus Schuster Tengnäs">
</a>
<h1>Pontus Schuster Tengnäs</h1>
<p>
Hello! 🤩
</p>
<p>
I am a curios developer, always on the hunt for something new to learn.
</p>
<p>
If you want to know more about me, have a look <a href="about.html" rel="noreferrer">here</a>, or check out my <a href="resume.html" rel="noreferrer">resume</a>. You can also find me on below links.
</p>
<footer>
<ul>
<li><a href="https://www.linkedin.com/in/pontus-schuster-tengnas" target="_blank" rel="noreferrer">⁃ LinkedIn</a></li>
<li><a href="https://github.com/pontusntengnas" target="_blank" rel="noreferrer">⁃ GitHub</a></li>
<li><a href="https://stackoverflow.com/users/8639272/pontusnt" target="_blank" rel="noreferrer">⁃ StackOverflow</a></li>
<li><a href="https://itunes.apple.com/se/developer/pontus-nilsson-tengnas/id1356267707" target="_blank"
rel="noreferrer">⁃ Apple App Store</a></li>
</ul>
</footer>
</body>
</html>