-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 1.89 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meine Website</title>
<meta name="author" content="Thomas Smulski">
<meta name="description" content="Website over Thomas Smulski">
<link rel="stylesheet" href="templates/css/style.css" type="text/css">
</head>
<body class="ts-center">
<header>
<nav class="ts-flex-container">
<ul>
<a class="ts-button" href="#about">Über mich</a>
<a class="ts-button" href="#contact">Kontakt</a>
</ul>
</nav>
<span><h1>Website<br>Thomas Smulski</h1></span>
<img class="ts-circle" src="templates/images/thomassmulski.png" alt="Image from Website Owner Thomas Smulski">
</header>
<main>
<h2 id="about">Über mich</h2>
<section>
<article>
<h3>Biografie</h3>
<p>Bin Thomas Smulski, wohne in Hamburg, bin 35 Jahre, 2 Kinder usw</p>
</article>
</section>
<h2 id="project">Projecte</h2>
<section>
<article>
<a href="https://immortalxepicaria.com">Immortal X Epicaria</a><br>
<a href="https://www.renovierung-hamburg.com">Renovierung Hamburg</a>
</article>
</section>
<h2 id="contact">Kontakt</h2>
<address>
<article>
<h4>Telefon</h4>
<span><p>+49 123456789</p></span>
</article>
<article>
<h4>E-Mail</h4>
<a href="mailto:thomassmulski@outlook.de">thomassmulski@outlook.de</a>
</article>
</address>
</main>
<hr>
<footer class="ts-flex-container-column">
<a href="#">TOP</a>
</footer>
</body>
</html>