-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
78 lines (74 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Contact Alexander Medgett </title>
<link rel="shortcut icon" type="image/png" href="img/ATM.svg">
<link rel="stylesheet" type="text/css" href="css/style.production.css">
<link rel="normalize" type="text/css" href="css/normalize.css">
<link
href="https://fonts.google.com/share?selection.family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900"
rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="page-header">
<!-- Add Logo here -->
<img src="img/AlexLogo.svg" alt="logo" class="page-header__item">
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About Me</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Contact</a>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item navigation-list">Work</a>
</li>
</ul>
</nav>
</header>
<main class="about-content">
Alexander Medgett<br>
Köpenicker Str. 126<br>
10179 Berlin<br>
Deutschland<br>
<br>
Telephone Number: <a href="tel: +491732164766" alt ="Telephonenumber">+491234567</a><br>
Skype <a href="skype:alex.medgett"> alex.medgett</a><br>
<a href="mailto:alexander.medgett@gmail.com">alexander.medgett@gmail.com</a><br>
<a href="mailto:alexander.medgett@gmail.com">Contact me</a><br>
<form action="" method="post" id="contact-form">
<label class="standard-label" for="contact-email">Email: </label>
<input type="email" id="contact-email" required>
<p></p>
<label class="standard-label" for="Telephone">Telephone: </label>
<input type="tel" id="Telephone" pattern="\d{3}[\-]\d{3}[\-]\d{4}" required>
<p></p>
<label class="standard-label" for="Message">Message: </label>
<textarea required maxlength="240" id="Message"></textarea>
<p></p>
<input type="submit" value="Send message">
</form>
</main>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<!-- Github Icon -->
<a href="https://github.com/AleToMe20" target="_blank"><img href="https://github.com/AleToMe20"
src="img/github.svg" alt="Github" width="30px" height="30px" enable-background="new 0 0 48 48"></a>
<!-- Twitter Icon -->
<a href="https://twitter.com/" target="_blank"><img width="30px" height="30px"
enable-background="new 0 0 48 48" src="img/twitter.svg" alt="Twitter"></a>
<!-- LinkedIn Icon -->
<a href="https://www.linkedin.com/in/alexander-medgett/" target="_blank"><img width="30px" height="30px"
enable-background="new 0 0 48 48" src="img/linkedin.svg" alt="LinkedIn"></a>
</div>
</footer>
</body>
<script src="js/tota11y.min.js"></script>
</html>