-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyhteystiedot.html
More file actions
73 lines (70 loc) · 2.86 KB
/
yhteystiedot.html
File metadata and controls
73 lines (70 loc) · 2.86 KB
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
<!DOCTYPE html>
<html lang="fi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yhteydenotto</title>
<link rel="stylesheet" href="/CSS/Common-Styles.css">
<link rel="stylesheet" href="/CSS/Contact.css">
</head>
<body>
<header>
<h1>Yhteydenotto</h1>
</header>
<nav>
<a href="index.html">Etusivu</a>
<!-- <a href="IT-Projektit.html">IT-Projektit</a> -->
<a href="Mediaprojektit.html">Mediaportfolio</a>
<a href="Piirrokset.html">Harrastetaide</a>
<a href="Yhteystiedot.html">Yhteystiedot</a>
</nav>
<main>
<section>
<h2>Ota yhteyttä lomakkeella</h2>
<form action="send_email.php" method="post" enctype="text/plain">
<label for="name">Nimi:</label><br>
<input type="text" id="name" name="name" placeholder="Kirjoita nimesi" required><br><br>
<label for="email">Sähköposti:</label><br>
<input type="email" id="email" name="email" placeholder="esimerkki@domain.com" required><br><br>
<label for="message">Viesti:</label><br>
<textarea id="message" name="message" placeholder="Kirjoita viestisi tähän" rows="5" required></textarea><br><br>
<button type="submit">Lähetä</button>
</form>
</section>
<section class="contact-info">
<h2>Yhteystiedot</h2>
<p>Voit ottaa minuun yhteyttä alla olevilla tiedoilla:</p>
<table class="contact-table">
<tr>
<th>Nimi</th>
<td>Jyri Nieminen</td>
</tr>
<tr>
<th>Sähköposti</th>
<td><a href="mailto:nieminen.jyri.j@gmail.com">nieminen.jyri.j@gmail.com</a></td>
</tr>
<tr>
<th>Puhelinnumero</th>
<td><a href="tel:+358401234567">+358 40 123 4567</a></td>
</tr>
<tr>
<th>Osoite</th>
<td>Tampere, Suomi</td>
</tr>
<tr>
<th>LinkedIn</th>
<td><a href="https://www.linkedin.com/in/jani-nieminen" target="_blank">linkedin.com/in/jyri-nieminen</a></td>
</tr>
</table>
</section>
</main>
<footer>
<div class="footer-links">
<a href="https://github.com/niejyr"><span class="fa-brands fa-square-github"></span></a>
<a href="mailto:nieminen.jyri.j@gmail.com"><span class="fa-solid fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/jyri-nieminen/"><span class="fa-brands fa-linkedin"></span></a>
</div>
<p>© 2025 Jyri Nieminen</p>
</footer>
</body>
</html>