-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
134 lines (118 loc) · 7.12 KB
/
Copy pathcontact.html
File metadata and controls
134 lines (118 loc) · 7.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ByteWave Contacts</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<script src="data.js" defer></script>
</head>
<body>
<header>
<div>
<div class="contact">
<nav class="navbar">
<img src="images/demo-logo.png" class="company-logo">
<ul>
<li><a href="index.html">Home</a>
<div class="about-menu-wrap" id="aboutMenu">
<div class="about-menu">
<hr>
<a href="index.html#aboutPage" class="about-menu-link">
<p>Founders</p>
<span>></span>
</a>
<a href="background.html" class="about-menu-link">
<p>Background</p>
<span>></span>
</a>
<a href="index.html#mission-page" class="about-menu-link">
<p>Mission</p>
<span>></span>
</a>
<a href="Exconsole.html" class="about-menu-link">
<p>Place an Order</p>
<span>></span>
</a>
</div>
</div>
</li>
<li><a href="partners.html">Partners</a></li>
<li><a href="filter.html">Search Restaurants</a>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="login.html" class="login">Log In</a></li>
<li><a href="signin.html">Sign In</a></li>
</ul>
</nav>
<div class="container">
<div class="entirecontact">
<header>
<div class="contactus">
<h1>Contact Us!</h1>
<br>
<form action="">
<div class="bold-text"><p>We'd love to hear from you! If you have a question, feedback, or just want to network, feel free to reach out.</p></div>
</form>
</div>
</header>
</div>
<!-- Contact Section -->
<section id="contactPage">
<div class="contact-section">
<div class="contact-grid1">
<div class="contact-card">
<img src="images/profile image.png" class="profile-img" alt="Richard Wang">
<p>Richard Wang</p>
<a class="contact-text" href="https://www.linkedin.com/in/richard-wang-54914228b/" target="_blank">Linkedin</a>
<br>
<a class="contact-text" href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=richardwang2217@gmail.com" target="_blank">Email</a>
<br>
<a class="contact-text" href="https://www.instagram.com/richard.zzz/" target="_blank">Instagram</a>
<br>
</div>
<div class="contact-card">
<img src="images/tife-headshot-img.jpg" class="profile-img" alt="Tife Odepe">
<p>Tife Odepe</p>
<a class="contact-text" href="https://www.linkedin.com/in/tife-odepe-636434292/" target="_blank">Linkedin</a>
<br>
<a class="contact-text" href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=tifeodepe@gmail.com" target="_blank">Email</a>
<br>
<a class="contact-text" href="https://instagram.com/tife_odepe" target="_blank">Instagram</a>
</div>
</div>
<br><br><br><br>
<div class="contact-grid2">
<div class="contact-card">
<img src="images/daren-headshot-img.jpg" class="profile-img" alt="Daren Mceachin">
<p>Daren Mceachin</p>
<a class="contact-text" href="https://www.linkedin.com/in/daren-mceachin-486a562b7" target="_blank">Linkedin</a>
<br>
<a class="contact-text" href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=darenjmc@gmail.com" target="_blank">Email</a>
<br>
<a class="contact-text" href="https://www.instagram.com/d.realtalk_/" target="_blank">Instagram</a>
<br>
</div>
<div class="contact-card">
<img src="images/juan-headshot-img.jpg" class="profile-img" alt="Juan Moreno">
<p>Juan Moreno</p>
<a class="contact-text" href="https://www.linkedin.com/in/juan-moreno-6b7a5b29b/" target="_blank">Linkedin</a>
<br>
<a class="contact-text" href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=jjuandm2006@gmail.com" target="_blank">Email</a>
<br>
<a class="contact-text" href="https://www.instagram.com/maijm__/" target="_blank">Instagram</a>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</header><button id="back-to-top">Back to Top</button>
<footer class="footer"><p>© 2024 ByteWave. All rights reserved.</p></footer>
</body>
</html>