-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (116 loc) · 5.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TheBaum's personal Website</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/navigation.css">
<link rel="stylesheet" href="style/variables.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<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&display=swap" rel="stylesheet">
</head>
<body style="background-color: #292831;">
<div id="page-wrapper">
<header>
<div id="header-wrapper">
<img class="header-item profile-picture header-image" src="images/favicon.ico"
alt="TheBaum's profile picture">
<nav id="header-nav" class="header-nav header-links">
<a class="header-item header-link" href="#about">About</a>
<a class="header-item header-link" href="#projects">Projects</a>
<a class="header-item header-link" href="#blog">Blog</a>
<a class="header-item header-link" href="#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="section about-section" id="about">
<article class="about-article">
<h1>Hi, I'm TheBaum</h1>
<p>Student, IT hobbyist and homelabber from germany.</p>
<p>I spend my time learning web technologys and data science.</p>
</article>
<article class="about-article">
<h1>My Freetime</h1>
<p>
In my freetime I like to do photography,
Tae Kwon Do and of course last but not least
I like to play arround with different programming
languages and learn things about computers on a
hardware and software level.
</p>
</article>
</section>
<section class="section projects-section" id="projects">
<div class="projects-list" id="projects-list"></div>
</section>
<section class="section blog-section" id="blog">
<div class="blog-container blog">
<iframe class="blog blog-iframe" src="https://thebaum123.github.io/blog" frameborder="0"></iframe>
</div>
</section>
<section class="section contact-section" id="contact">
<div class="icons-wrapper wrapper social-icons">
<a href="https://github.com/TheBaum123">
<img src="images/github.svg" alt="github link">
</a>
<a href="https://discordapp.com/users/799599681280802848">
<img src="images/discord.svg" alt="discord link">
</a>
<a href="https://twitter.com/the_baum123">
<img src="images/x.svg" alt="x link / twitter link">
</a>
<a href="https://chat-app-6bnk.onrender.com/">
<img src="images/chat.svg" alt="chat app link">
</a>
</div>
<div class="contact-form section" id="contact-form-wrapper">
<form action="https://contact-api-lwe8.onrender.com/new/" method="post">
<div class="form-field-wrapper">
<label for="contact-form-email">Email*:</label>
<input type="text" name="email" id="contact-form-email" autocomplete="email"
placeholder="[email protected]" required>
</div>
<div class="form-field-wrapper">
<label for="contact-form-message">Message*:</label>
<textarea name="message" id="contact-form-message"
placeholder="Hello, I wanted to tell you, that..." required></textarea>
</div>
<div class="form-field-wrapper">
<label for="contact-form-phone">Phone:</label>
<input type="tel" name="phone" id="contact-form-phone" autocomplete="tel"
placeholder="+0 123 456 78901">
</div>
<div class="form-field-wrapper">
<label for="contact-form-name">Name:</label>
<input type="text" name="name" id="contact-form-name" autocomplete="name"
placeholder="John Doe">
</div>
<input type="submit">
</form>
<center>* Fields marked with "*" are required.</center>
</div>
</section>
</main>
<footer>
<h3>Atributions:</h3>
<br>
gh icon: Icon made by Pixel perfect from <a
href="https://www.flaticon.com/free-icon/github_2111432">www.flaticon.com</a>
<br>
dc icon: Icon made by Freepik from <a
href="https://www.flaticon.com/free-icon/discord_5968968">www.flaticon.com</a>
<br>
x icon: Icon made by Freepik from <a
href="https://www.flaticon.com/free-icon/twitter_5969020">www.flaticon.com</a>
<br>
messager icon: Icon made by Freepik from <a
href="https://www.flaticon.com/free-icon/messenger_1370907">www.flaticon.com</a>
</footer>
</div>
<script src="scripts/main.js"></script>
</body>
</html>