-
Notifications
You must be signed in to change notification settings - Fork 0
/
visitprofile.html
106 lines (102 loc) · 6 KB
/
visitprofile.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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name="author" content="Kathy Thin, Leah Jia, Vinh Nguyen, Eivy Cedeno">
<meta name="description" content="DawgDate Profile Page">
<title>Dawg Date | Profile</title>
<link href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css' rel='stylesheet'>
<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>
<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="personalprofile.html">MY PROFILE</a></li>
</ul>
</div>
</nav>
</header>
<body className='snippet-body'>
<div class="row py-5 px-4">
<div class="col-md-5 mx-auto">
<!-- Profile widget -->
<div class="bg-white shadow rounded overflow-hidden">
<div class="px-4 pt-0 pb-4 cover">
<div class="media align-items-end profile-head">
<div class="profile mr-3">
<img src="img/person-1.avif" alt="..." width="130" class="rounded mb-2 img-thumbnail">
<a href="#" class="btn btn-outline-dark btn-sm btn-block">Edit profile</a>
</div> <div class="media-body mb-5 text-white">
<h4 class="mt-0 mb-0">Wayne Little</h4>
<p class="small mb-4"> <i class="fas fa-map-marker-alt mr-2"></i>Seattle</p>
</div>
</div>
</div>
<div class="bg-light p-4 d-flex justify-content-end text-center">
<ul class="list-inline mb-0">
<li class="list-inline-item">
<h5 class="font-weight-bold mb-0 d-block">4</h5>
<small class="text-muted">
<i class="fas fa-image mr-1"></i>Photos</small>
</li>
<li class="list-inline-item">
<h5 class="font-weight-bold mb-0 d-block">30</h5>
<small class="text-muted">
<i class="fas fa-user mr-1"></i>Connections</small>
</li>
<li class="list-inline-item">
<h5 class="font-weight-bold mb-0 d-block">He/Him</h5>
<small class="text-muted">
<i class="fas fa-user mr-1"></i>Pronouns</small>
</li>
</ul>
</div>
<div class="px-4 py-3">
<h5 class="mb-0">
About
</h5>
<div class="p-4 rounded shadow-sm bg-light">
<p class="font-italic mb-0">24 Years Old</p>
<p class="font-italic mb-0">Masters In Mechanical Engineering</p>
<p class="font-italic mb-0">Gamer | Guitarist</p>
<p class="font-italic mb-0">Interested in Women</p>
</div>
<div class="mb-0">
<h5>Bio</h5>
<p class="font-italic mb-0">Tall Enough For You</p>
<p class="font-italic mb-0">Looking to meet someone to go on hikes with and take the award for cringest couple.</p>
</div>
<div class="py-4 px-4">
<div class="d-flex align-items-center justify-content-between mb-3">
<h5 class="mb-0">Photos</h5>
<a href="#" class="btn btn-link text-muted">Show all</a>
</div>
<div class="row">
<div class="col-lg-6 mb-2 pr-lg-1">
<img src="img/engineering-online-mechanical-29Apr2019.jpeg" alt="" class="img-fluid rounded shadow-sm">
</div>
<div class="col-lg-6 mb-2 pl-lg-1">
<img src="img/w-day.jpeg" alt="" class="img-fluid rounded shadow-sm">
</div>
<div class="col-lg-6 pr-lg-1 mb-2">
<img src="img/gaming_setup.avif" alt="" class="img-fluid rounded shadow-sm">
</div>
<div class="col-lg-6 pl-lg-1">
<img src="img/man_singing.jpg" alt="" class="img-fluid rounded shadow-sm">
</div>
</div>
</div>
</div>
</div>
</body>
</html>