-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
85 lines (84 loc) · 3.97 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="/art/ezFavi.png">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Us</title>
<link rel="stylesheet" href="/contactStyles/styles.css">
</head>
<body>
<!--Start of body, putting nav bar first-->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="home.html">
<img src="/art/ezSVG.svg" alt="Easy Intern" height="30" class="d-incline-block align-top">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">Register</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<!-- Add more links as needed -->
</ul>
</div>
</nav>
<!--if we make a change to this nav bar we have to copy and paste it to all other pages, this is what frameworks like react and vue solve-->
<h1 class="text-center">
Meet Our Team
</h1>
<div class="teamMembers">
<div class="card">
<img src="will.png" alt="William's Picture" class="profile-img rounded-circle">
<div class="card-body">
<h2 class="card-title">
William Cabeza
</h2>
<h3 class="card-subtitle mb-2 text-muted">
CEO of Eazy Intern
</h3>
<!-- Optionally add a short bio or description here -->
<p class="card-text">A man with a vision and passion to help students find their purpose.</p>
</div>
</div>
<div class="card">
<img src="https://media.licdn.com/dms/image/C5603AQEoz1JSxLqaKQ/profile-displayphoto-shrink_100_100/0/1667955383726?e=1694044800&v=beta&t=6KAzYhg_NKiV7NLpixMb_oVge2fewTevmH1dRi0s0UA" alt="Christopher's Picture" class="profile-img rounded-circle">
<div class="card-body">
<h2 class="card-title">
Christopher Solanilla
</h2>
<h3 class="card-subtitle mb-2 text-muted">Lead Developer of Eazy Intern</h3>
<!-- Optionally add a short bio or description here -->
<p class="card-text">A dedicated developer who took on the challenge of fullstack development because he was bored.</p>
</div>
</div>
<div class="card">
<img src="daniel.jpg" alt="Daniel's Picture" class="profile-img rounded-circle">
<div class="card-body">
<h2 class="card-title">
Daniel Garcia
</h2>
<h3 class="card-subtitle mb-2 text-muted">Front End Developer of Eazy Intern</h3>
<!-- Optionally add a short bio or description here -->
<p class="card-text">A creative developer with a talent for digital design.</p>
</div>
</div>
</div>
</body>
</html>