-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (114 loc) · 5.83 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Kathy Thin, Leah Jia, Vinh Nguyen, Eivy Cedeno">
<meta name="description" content="DawgDate Homepage">
<title>DawgDate | Home</title>
<link rel="stylesheet" href="css/style-project.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<section style="min-height: 100vh;">
<header class="navbar-bg">
<nav>
<div class="navbar">
<a href="index.html">
<img src="img/logo.png" class="logo">
<h1 class="name">DawgDate</h1>
</a>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">CONNECTIONS</a></li>
<li><a href="">CHAT</a></li>
<li><a href="personalprofile.html">MY PROFILE</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="search-container">
<div class="search-bar">
<input type="search" id="search-input" placeholder="Search profile names here" />
<button class="search-button" aria-label="Search">Search</button>
</div>
<div class="filter-group">
<button class="filter" aria-label="all-filter">All</button>
<button class="filter" aria-label="major-filter">Same Major</button>
<button class="filter" aria-label="interest-filter">Same Interest</button>
<button class="filter" aria-label="age-filter">Same Age</button>
</div>
</section>
<section class="profile-list">
<h1>People You May Know</h1>
<div class="row">
<!-- Profile 1 -->
<div class="profile">
<a href="visitprofile.html">
<img src="img/person-1.avif" alt="Wayne">
</a>
<figcaption>Image from Unsplash</figcaption>
<h2 class="profile-name">Wayne | 24 (he/him)</h2>
<p class="profile-description">Hey ya'll, I'm Wayne. I'm working on my masters in Mechanical
Engineering. Always down to kick back and have a good time.</p>
</div>
<!-- Profile 2 -->
<div class="profile">
<a href="index.html">
<img src="img/person-2.jpg" alt="Leslie">
</a>
<figcaption>Image from Unsplash</figcaption>
<h2 class="profile-name">Leslie | 19 (she/her)</h2>
<p class="profile-description">Heyoooo it's Leslie!! Huge party gal always looking to meet new
faces, hit me up if you know how to have fun (:</p>
</div>
<!-- Profile 3 -->
<div class="profile">
<a href="index.html">
<img src="img/person-3.jpg" alt="James">
</a>
<figcaption>Image from Unsplash</figcaption>
<h2 class="profile-name">James | 22 (he/him)</h2>
<p class="profile-description">What's up guys, I'm James. I'm a huge outdoors person, either playing
football or baseball on the weekends. Looking for something serious, reach out if you are too.
</p>
</div>
<!-- Profile 4 -->
<div class="profile">
<a href="index.html">
<img src="img/person-4.jpg" alt="Vicky">
</a>
<figcaption>Image from Unsplash</figcaption>
<h2 class="profile-name">Vicky | 21 (they/them)</h2>
<p class="profile-description">Hey I'm Vicky! I'm a third-year studying Psychology. Not really sure
what I'm looking for but I'm hoping you'll help me figure that out.</p>
</div>
</div>
</section>
</main>
</section>
<footer>
<div class="footer-info">
<h3>© DawgDate</h3>
<p>DawgDate creates a better dating experience on campus for University of Washington students.</p>
<ul class="links">
<li><a href="https://www.linkedin.com/school/uw-ischool/" target="_blank"><i
class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/UWiSchool" target="_blank"><i
class="fa fa-facebook-f"></i></a></li>
<li><a href="https://www.instagram.com/uwischool/" target="_blank"><i
class="fa fa-instagram"></i></a></li>
<li><a href="https://twitter.com/uw_ischool?s=20&t=6g6UTfndELpQXwPyzvzTog" target="_blank"><i
class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/user/UWiSchool" target="_blank"><i
class="fa fa-youtube"></i></a></li>
</ul>
</div>
<div class="copyright">
<p>COPYRIGHT ©2022. DESIGNED BY <i>INFO 340 GROUP BB1</i></p>
</div>
</footer>
</body>
</html>