-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (77 loc) · 2.67 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
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tuomas Nummela</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>
<header>
<img alt="Background-image" src="images/background.JPG" />
<div class="top-left">
<h1>Tuomas Nummela,</h1>
<h1>Software Enthusiast.</h1>
</div>
</header>
<div class="projectSection">
<h2>My latest ventures!</h2>
<div class="projects">
<div class="project">
<a class="highlightLink" href="https://pathbuilder.herokuapp.com/"
>FindMyPath</a
>
<p>
A web application for generating running paths when you need
inspiration. Built using React, Node and MySQL. The app also uses
the Google Maps API to visualize the path.
</p>
</div>
<div class="project">
<a class="highlightLink" href="https://luomuluola.onrender.com//"
>LuomuLuola</a
>
<p>
A static campaign site for organic food information. Search for
organic restaurants nearby and place reviews! Designed with Figma
and implemented with React.
</p>
</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>