-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
87 lines (71 loc) · 3.62 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
<!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">
<title>The Paw Path</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<!-- navbar -->
<nav class="bg-indigo-900">
<div class="relative flex h-16 items-center justify-between">
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
</div>
<div class="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
<div class="hidden sm:ml-6 sm:block">
<div class="flex space-x-4">
<a href="index.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="about.html" class="bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium"aria-current="page">About Us</a>
<a href="mission.html" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Our Mission</a>
</div>
</div>
</div>
</div>
<!-- mobile view -->
<div class="sm:hidden" id="mobile-menu">
<div class="space-y-1 px-2 pt-2 pb-3">
<a href="index.html" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="about.html" class="bg-gray-900 text-white block px-3 py-2 rounded-md text-base font-medium"aria-current="page">About Us</a>
<a href="mission.html" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Our Mission</a>
</div>
</div>
</nav>
<!-- Facts Section -->
<div class="bg-gray-200 py-12">
<div class="container mx-auto px-4">
<h1 class="text-3xl font-medium text-center"> Meet Our Team</h1>
<p class="text-lg text-gray-700 mb-8 text-center">We are a group of students attending the UCF bootcamp for FullStack Developement</p>
<div class="flex flex-wrap -mx-4">
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="bg-white rounded-lg p-8">
<h2 class="text-xl font-medium">Chrysti R</h2>
<p class="text-gray-700 text-lg">Backend <br> Rescue Pets api</p>
</div>
</div>
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="bg-white rounded-lg p-8">
<h2 class="text-xl font-medium">Francesco T</h2>
<p class="text-gray-700 text-lg">Frontend <br></p>
</div>
</div>
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="bg-white rounded-lg p-8">
<h2 class="text-xl font-medium">Ashlynn W</h2>
<p class="text-gray-700 text-lg">Backend <br> Google Maps api</p>
</div>
</div>
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="bg-white rounded-lg p-8">
<h2 class="text-xl font-medium">Justin D</h2>
<p class="text-gray-700 text-lg">Frontend <br>FrameWork</p>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script type="text/javascript" src="assets/script.js"></script>
</html>