-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (69 loc) · 2.43 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tuomas Nummela | About</title>
<meta
name="description"
content="A portfolio page for a Computer Science student."
/>
<link rel="icon" href="images/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,700&family=Source+Code+Pro&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="./styles/css/index.css" />
</head>
<body>
<nav>
<a href="index.html"><img alt="Menulogo" src="images/menulogo.png" /></a>
<div>
<a class="highlightLink" href="projects.html">Projects</a>
<a class="highlightLink" href="about.html">About me!</a>
</div>
</nav>
<div class="projectSection">
<div class="projects">
<div class="project">
<div class="projectInfo">
<img
class="projectImg"
id="profileImg"
alt="Profile photo"
src="images/profile.png"
/>
<div>
<b class="highlightedText"><em>Moro! / Howdy!</em></b>
<p>
I am a third-year Computer Science Student in Aalto University
and a software hobbyist. I specialize in front-end web
development and User Interface construction. Reach out to me by
email or Telegram to get to know me better!
</p>
<p class="highlightedText">Tuomas Nummela</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<a class="highlightLink" href="mailto:[email protected]">
</a>
<a target="_blank" href="https://github.com/tuomax7"
><img alt="Github" class="linklogo" src="images/github.png"
/></a>
<a
target="_blank"
href="https://www.linkedin.com/in/tuomas-nummela-9596bb22b/"
><img alt="LinkedIn" class="linklogo" src="images/linkedin.png"
/></a>
<a target="_blank" href="https://t.me/tuomasnummela"
><img alt="Telegram" class="linklogo" src="images/telegram.png"
/></a>
</footer>
</body>
</html>