-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
103 lines (89 loc) · 3.25 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./bootstrap/bootstrap.min.css" />
<link rel="icon" href="./images/globe-solid.svg">
<link rel="stylesheet" href="./css/main.css" />
<title>about</title>
</head>
<body>
<!-- HEADER -->
<header class="header">
<div class="container">
<div class="header__wrapper">
<a class="header__logo" href="#">
<img class="header__logo-img" src="./images/myteam-logo.svg" alt="header logo img">
</a>
<nav class="header__nav">
<ul class="nav__list">
<li class="nav__item">
<a href="./index.html" class="nav__link">home</a>
</li>
<li class="nav__item">
<a href="./about.html" class="nav__link">about</a>
</li>
</ul>
<a href="./contact.html"><button class="header-btn btn btn-outline-light rounded-pill">contact us</button></a>
</nav>
<button class="header__hamburger"></button>
</div>
</div>
</header>
<!-- MAIN -->
<main class="main">
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="container">
<div class="footer__wrapper">
<div class="footer__left">
<a class="footer__logo" href="#">
<img class="footer__logo-img" src="./images/myteam-logo.svg" alt="footer logo img" width="160" height="40">
</a>
<ul class="nav__list">
<li class="nav__item">
<a href="#" class="nav__link">home</a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">about</a>
</li>
</ul>
</div>
<div class="footer__between">
<p class="footer__words">987 Hillcrest Lane <br> Irvine, CA <br> California 92714 <br> Call Us : 949-833-7432</p>
<div class="footer__between-words-mob">
<p class="footer__words">Copyright 2020. All Rights Reserved</p>
</div>
</div>
<div class="footer__right">
<ul class="footer__links">
<li class="footer__links-item">
<a class="footer__links-link" href="#">
<img class="footer__links-img" src="./images/facebook.svg" alt="" width="24" height="24">
</a>
</li>
<li class="footer__links-item">
<a class="footer__links-link" href="#">
<img class="footer__links-img" src="./images/param.svg" alt="" width="24" height="24">
</a>
</li>
<li class="footer__links-item">
<a class="footer__links-link" href="#">
<img class="footer__links-img" src="./images/twitter.svg" alt="" width="24" height="20">
</a>
</li>
</ul>
<div class="footer__right-words">
<p class="footer__words">Copyright 2020. All Rights Reserved</p>
</div>
</div>
</div>
</div>
</footer>
<script src="./js/index.js"></script>
<script src="./bootstrap/bootstrap.bundle.min.js"></script>
</body>
</html>