-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
80 lines (75 loc) · 3.44 KB
/
Copy pathcontact.html
File metadata and controls
80 lines (75 loc) · 3.44 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>KOTOINE PERERUAN NABAALA</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" media="screen">
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/bull.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-bars" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Contact Me</h1>
</section>
<!--Contact-->
<section class="location">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d31912.88996037521!2d35.85383876714335!3d-1.078699099641063!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x182c0301de8b0645%3A0x226cac4459fc8e39!2sNarok!5e0!3m2!1sen!2ske!4v1628264649706!5m2!1sen!2ske" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</section>
<section class="contact-me">
<div class="row">
<div class="contact-col">
<div>
<i class="fa fa-home"></i>
<span>
<h5>Lenana Road</h5>
<p>Narok,Kenya</p>
</span>
</div>
<div>
<i class="fa fa-phone"></i>
<span>
<h5>+254757364069</h5>
<p>Monday to Sunday, 7AM to 10PM</p>
</span>
</div>
<div>
<i class="fa fa-envelope-o"></i>
<span>
<h5>pereruannabaala@gmail.com</h5>
<p>Email me</p>
</span>
</div>
</div>
</section>
<!--footer-->
<section class="footer">
<h4>About Me</h4>
<p>I'm a front-developer from Kenya,<br>passionate about software development</p>
<div class="icons">
<i class="fa fa-github"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-slack"></i>
<i class="fa fa-instagram"></i>
</div>
<p><i class="fa fa-users"></i>Technology is best when it brings people together.<i class="fa fa-users"></i></p>
</section>
</body>
<script src="js/scripts.js"></script>
</html>