-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
40 lines (40 loc) · 1.09 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
<!DOCTYPE html>
<!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>Profile page</title>
<link
rel="stylesheet"
href="/asset/bootstrap-5.1.3-dist/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container my-5">
<div class="row align-items-center">
<div class="col-md-4">
<img
src="/asset/images/user.jpeg"
class="w-50 rounded-circle"
alt=""
/>
</div>
<div class="col-md-8">
<div class="dispaly-4">RiteChoice</div>
<div class="dispaly-4 mt-2">
<input
type="button"
class="btn btn-primary rounded-pill follow-class"
id="follow"
value="follow"
/>
<span class="ms-3 fw-bold"><span id="followCount">0</span>
</div>
</div>
</div>
</div>
<script src="./js/profile.js"></script>
</body>
</html>