-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
50 lines (50 loc) · 1.71 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>
</head>
<body>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="navbar-brand">Catbook</div>
<div class="navbar-nav" id="nav-item-container">
<!-- navbar items are inserted here -->
</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">
<!-- name inserted here -->
</div>
<div class="row mt-4">
<div class="col-4">
<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-4">
<h4>My Latest Post</h4>
<br>
<div class="card">
<div class="card-body" id="latest-post-card">
<!-- last post inserted here -->
</div>
</div>
</div>
<div class="col-4">
<h4>My Favorite Type of Cat</h4>
<br>
<h3 id="favorite-cat">Russian Blue</h3>
</div>
</div>
</div>
</body>
<script src="js/navbar.js"></script>
<script src="js/profile.js"></script>
</html>