-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonalprofile.html
86 lines (78 loc) · 3.66 KB
/
personalprofile.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
<!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 Personal Profile Page">
<title>DawgDate | My Profile </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" class="container">
<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="index.html">HOME</a></li>
<li><a href="">CONNECTIONS</a></li>
<li><a href="">CHAT</a></li>
<li><a href="#">MY PROFILE</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="profile-info">
<h1>MY PROFILE</h1>
<section class="profile-pic">
<img class="serene" src="img/my-profile.jpg"Serene">
<figcaption>Image from Unsplash</figcaption>
</section>
<p>First Name: Serene</p>
<p>Last Name: Evans</p>
<p>Username: sereneevans</p>
<p>UW NetID: ssevans20</p>
<p>UW Email: [email protected]</p>
<p>Major: Microbiology + Communications</p>
<p>Gender: Female</p>
<p>Birthday: 05/15/1999</p>
<p>Hometown: Sumner, Washington</p>
<div class="edit-profile">
<button class="edit" aria-label="edit-profile">Edit Profile</button>
<button class="edit" aria-label="change-password">Change Password</button>
<button class="edit" aria-label="delete-account">Delete Account</button>
<button class="edit" aria-label="log-out">Log Out</button>
</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" style="margin: 0;">
<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>