-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
130 lines (126 loc) · 3.93 KB
/
contact.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
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Ian Baumeister - Contact!</title>
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<link rel="stylesheet" href="css/style.production.css" />
<meta name="viewport" content="width=display-width, initial-scale=1" />
<meta
name="description"
content="Ian Baumeister's - Web Developer Contact Page. Please get in touch, and let us solve your challenges and fulfill your wishes together!"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="shortcut icon" href="./images/ibfavicon.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,[email protected],100..1000&family=Sora:[email protected]&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="body">
<header class="header">
<div class="header-content">
<div class="header-left">
<img
src="img/baumeister_logo.svg"
height="50"
alt="Ian Baumeister Logo"
/>
<h1>Ian Baumeister</h1>
<h2>Web Developer and Designer</h2>
</div>
<div class="header-right">
<img
class="profile-picture"
src="img/profilepic2.jpg"
alt="Ian Baumeister's Profile Picture"
/>
</div>
</div>
<br />
<div>
<nav class="button-container" role="menubar">
<a href="index.html" role="menuitem" class="navigation-list__item"
>Home</a
>
<a href="about.html" role="menuitem" class="navigation-list__item"
>About Me</a
>
<a href="work.html" role="menuitem" class="navigation-list__item"
>My Work</a
>
<a
href="contact.html"
role="menuitem"
class="navigation-list__item navigation-list__item--active"
>Contact</a
>
</nav>
</div>
</header>
<br />
<hr />
<main>
<br />
<div class="contact-form">
<form action="javascript:void(0)" method="post">
<div class="form-group">
<label for="email"><b>Email *</b></label>
<input
id="email"
type="email"
placeholder="Enter your email address"
required
/>
</div>
<div class="form-group">
<label for="telephone"><b>Telephone</b></label>
<textarea id="telephone" placeholder="Your Telephone"></textarea>
</div>
<div class="form-group">
<label for="message"><b>Message *</b></label>
<textarea
id="message"
maxlength="540"
placeholder="Your Message"
required
></textarea>
</div>
<div class="submit-button-wrapper">
<input id="submit-button" type="submit" value="Send Message" />
</div>
</form>
</div>
<hr />
<br />
<div>
Ian Baumeister<br />
Berlin Mitte<br />
Germany<br />
<br />
Tel:
<a href="tel:+4917636127937" aria-label="Call +4917636127937"
>+4917636127937</a
><br />
Email:
<a
href="mailto:[email protected]"
aria-label="Send Email to [email protected]"
>
>
<br />
</div>
</main>
</div>
<hr />
<script src="js/script.js"></script>
<script src="js/tota11y.min.js"></script>
</body>
</html>