-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
56 lines (54 loc) · 1.91 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MREMA'S PERSONAL WEBSITE</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://getbootstrap.com/docs/5.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
</head>
<body class="p-3 m-0 border-0 bd-example m-0 border-0">
<header>
<h1>Innocent Mrema</h1>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">PORTFOLIO</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="contacts.html">CONTACTS</a>
</li>
</ul>
</header>
<section>
<div style="padding-top: 30px;">
<div class="row">
<div class="col-lg-5">
<div class="info">
<div class="address">
<h4>Location:</h4>
<p>Barabara ya hospitali, OR-TAMISEMI</p>
</div>
<div class="email">
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<h4>Call:</h4>
<p>+255 749 377 099</p>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>