-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprofile.html
50 lines (50 loc) · 1.86 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<title>Profile Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="navbar-brand">Catbook</div>
<div class="navbar-nav" id="nav-item-container">
<a class="nav-item nav-link disabled">Home</a>
<a class="nav-item nav-link active" href="">Profile</a>
</div>
</nav>
<div class="container text-center" id="profile-container">
<div class="large-profile-container text-center my-4">
<div class="circle-avatar" id="profile-image"></div>
</div>
<hr>
<div id="name-container">
<h1 id="profile-name">Some User</h1>
</div>
<div class="row mt-4">
<div class="col">
<h4>About Me</h4>
<br>
<div class="text" id="profile-description">
I am an avid cat-lover. I have 9 different cats: Aberforth, Belinda, Carmen, Darsh, Evelyn, Francis II, Gottfried, Hamilton, and Irma.
</div>
</div>
<div class="col-6">
<div class="card">
<div class="card-header">
<h4>My Latest Post</h4>
</div>
<div class="card-body" id="latest-post-card">
<p class="story-content card-text" id="profile-status">Today was a great day! I made a home-made sushi banquet for me and my family of cats ^_^</p>
</div>
</div>
</div>
<div class="col">
<h4>My Favorite Type of Cat</h4>
<br>
<h3 id="favorite-cat">Russian Blue</h3>
</div>
</div>
</div>
</body>
</html>