-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-profile.html
More file actions
72 lines (65 loc) · 4.09 KB
/
user-profile.html
File metadata and controls
72 lines (65 loc) · 4.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Devspace</title>
<!--Links for bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Links for fontawsome and google font api -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<!-- header -->
<header class="headerClass mb-3">
<div class="container d-flex flex-coloumn flex-row text-align-center p-3">
<h4 class="my-0 mr-md-auto font-weight-normal"><a href="/" class="text-white">DevSpace</a></h4>
<div class="flex-row my-3 my-md-0">
<a href="#" class="text-white mr-2 header-search-icon" title="Search" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-search"></i></a>
<span class="text-white mr-2 header-chat-icon" title="Chat" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-comment"></i></span>
<a href="#" class="mr-2"><img title="My Profile" data-toggle="tooltip" data-placement="bottom" style="width: 32px; height: 32px; border-radius: 16px;" src="https://gravatar.com/avatar/f64fc44c03a8a7eb1d52502950879659?s=128"></a>
<a class="btn btn-sm btn-success mr-2" href="#">Create Post</a>
<form action="#" method="POST" class="d-inline">
<button class="btn btn-sm btn-secondary">Sign Out</button>
</form>
</div>
</div>
</header>
<!-- Main body -->
<div class="container py-md-5 container--narrow">
<h2 ><img class="avatar-small" src="https://gravatar.com/avatar/b9408a09298632b5151200f3449434ef?s=128">John
<form class="ml-2 d-inline" action="#" method="post">
<button class="btn btn-sm btn-primary">Follow <i class="fa fa-user-plus"></i></button>
</form>
</h2>
<h5 class="text-muted">Web Developer</h5>
<div class="profile-nav nav nav-tabs pt-2 mb-4">
<a href="#" class="profile-nav-link nav-item nav-link active">Post :3</a>
<a href="#" class="profile-nav-link nav-item nav-link">Followers :3</a>
<a href="#" class="profile-nav-link nav-item nav-link">Follwing :3</a>
</div>
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action">
<img class="avatar-tiny" src="https://gravatar.com/avatar/b9216295c1e3931655bae6574ac0e4c2?s=128">
<strong>Example Post #1</strong> on 1/3/2019
</a>
<a href="#" class="list-group-item list-group-item-action">
<img class="avatar-tiny" src="https://gravatar.com/avatar/b9216295c1e3931655bae6574ac0e4c2?s=128">
<strong>Example Post #2</strong> on 1/3/2019
</a>
<a href="#" class="list-group-item list-group-item-action">
<img class="avatar-tiny" src="https://gravatar.com/avatar/b9216295c1e3931655bae6574ac0e4c2?s=128">
<strong>Example Post #3</strong> on 1/3/2019
</a>
</div>
</div>
<!-- footer -->
<footer class="border-top text-center small text-muted py-3 ">
<p style="font-weight: bold;" class="m-0">Copyright © 2022 <a href="/" class="text-muted">DevSpace</a>. All rights reserved.</p>
</footer>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.5.0/js/all.js" integrity="sha384-GqVMZRt5Gn7tB9D9q7ONtcp4gtHIUEW/yG7h98J7IpE3kpi+srfFyyB/04OV6pG0" crossorigin="anonymous"></script>
</body>
</html>