forked from tarequem/ev-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.html
76 lines (65 loc) · 3.29 KB
/
about-us.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
<!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="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css">
<link href="https://fonts.googleapis.com/css2?family=Enriqueta&family=IBM+Plex+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/style.css">
<title>CHARGE IT UP | Your Best Charger Locator</title>
</head>
<body>
<header class="page-title flex flex-col md:flex-row md:justify-between">
<div id="companyName" class="flex flex-row justify-center">
<div id="logo">
<img src="./assets/Charge station.svg" alt="logo of charging station">
</div>
<h1><a href="index.html">CHARGE IT UP</a></h1>
</div>
<nav>
<ul class="flex flex-row justify-between">
<li><a href="about-us.html">About Us</a></li>
<li><a href="index.html#howTo">How It Works</a></li>
</ul>
</nav>
</header>
<div class="about-us-hero">
<!-- Team members -->
<section class="team-members">
<div id="Rafael">
<h2>Rafael</h2>
<a href="https://www.linkedin.com/in/rafael-a-gomes/" target="_blank"><img src="assets/linkedin logo icon.svg"
alt="linkedin logo"></a>
<a href="https://github.com/rfabreu" target="_blank"><img src="assets/github-svgrepo-com.svg" alt="github logo"></a>
</div>
<div id="Shu">
<h2>Shu</h2>
<a href="https://www.linkedin.com/in/shu-yang-iris/" target="_blank"><img src="assets/linkedin logo icon.svg"
alt="linkedin logo"></a>
<a href="https://github.com/NewChap2022" target="_blank"><img src="assets/github-svgrepo-com.svg" alt="github logo"></a>
</div>
<div id="Michael">
<h2>Michael</h2>
<a href="https://www.linkedin.com/in/michaeljsu/" target="_blank"><img src="assets/linkedin logo icon.svg"
alt="linkedin logo"></a>
<a href="https://github.com/MyCodeSu" target="_blank"> <img src="assets/github-svgrepo-com.svg" alt="github logo"></a>
</div>
<div id="Tareque">
<h2>Tareque</h2>
<a href="https://www.linkedin.com/in/tareque-u-rahman-moatar-4286766a/" target="_blank"> <img
src="assets/linkedin logo icon.svg" alt="linkedin logo"> </a>
<a href="https://github.com/tarequem" target="_blank"> <img src="assets/github-svgrepo-com.svg" alt="github logo"> </a>
</div>
<div id="Reena">
<h2>Reena</h2>
<a href="https://www.linkedin.com/in/reenahunjan/" target="_blank"> <img src="assets/linkedin logo icon.svg"
alt="linkedin logo"></a>
<a href="https://github.com/RHunjan" target="_blank"> <img src="assets/github-svgrepo-com.svg" alt="github logo"></a>
</div>
</section>
</div>
<footer>
©<a href="about-us.html">2022 by The PowerBuddies</a>
</footer>
</body>