-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (74 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact-page of Adewunmi Bamishigbin</title>
<link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="style.production.css">
</head>
<body>
<header class="page-header">
<a href="index.html"><img class="page-header__item" src="img/adexbam-logo1.png" alt="personal logo for adexbam"></a><!--add logo-->
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a role="menuitem" href="index.html" class="navigation-list__item navigation-list__item--active">Home</a>
</li>
<li role="presentation">
<a role="menuitem" href="about.html" class="navigation-list__item navigation-list__item--active">About me</a>
</li>
<li role="presentation">
<a role="menuitem" href="contact.html" class="navigation-list__item navigation-list__item--active">Contact</a>
</li>
<li role="presentation">
<a role="menuitem" href="works.html" class="navigation-list__item navigation-list__item--active">Works</a>
</li>
</ul>
</nav>
</header>
<div class="profile__about">
Adewunmi Bamishigbin<br>
Crivitzer Str<br>
13059 Berlin<br>
Deutschland<br>
<br>
<h1>Or send your request here...</h1>
Telephone <a href="tel:+4915218856805">Call my phone</a><br>
Skype <a href="skype:adexbam">adexbam</a><br>
Email: <a href="mailto:[email protected]">adewunmi.bamishigbin(at)gmail.com</a><br><br>
<!--later add backend to the form bellow
<form action="#" method="post" id="contact-form">
<div class="input-wrapper">
<label class="standard-label" for="contact-email">Email: </label>
<input type="email" id="contact-email" required>
</div>
<div class="input-wrapper">
<label class="standard-label" for="contact-tel">Telephone: </label>
<input type="tel" id="contact-tel" pattern="\d{3}[\-]\d{3}[\-]\d{4}">
</div>
<div class="input-wrapper">
<label class="standard-label" for="contact-text">Message: </label>
<textarea id="contact-text" required maxlength="240"></textarea><br>
</div>
<div class="input-wrapper">
<input class="button" type="submit" value="Send message">
</div>
</form>
-->
</div>
<footer class="page-footer"><!--add footer link images bellow-->
<p>Find me on</p>
<div class="social-media">
<a href="https://github.com/adexbam" target="_blank"><img src="img/github_icon.svg" alt="Github"></a>
<a href="https://twitter.com/adexbam"><img src="img/twitter_icon.svg" alt="Twitter"></a>
<a href="https://www.linkedin.com/in/adewunmi-bamishigbin-a8004370/" target="_blank"><img src="img/linkedin_icon.svg" alt="LinkedIn"></a>
</div>
</footer>
<script src="js/tota11y.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>