-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserpage.html
67 lines (62 loc) · 1.84 KB
/
userpage.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="icon" href="imgs/favicon.ico">
<title>Profil</title>
<style>
@import url(css/fas.css);
@import url(css/place.css);
</style>
</head>
<body>
<span onshow="checkCookie()"></span>
<nav>
<i
class="fa-solid fa-chevron-left space-right cursor"
onclick="javascript:location.href='index.html'"
title="Geri dön"
></i>
<div class="logo">
<i class="fas fa-hamburger icon-logo"></i>
<p>Menü Görmeden</p>
</div>
</nav>
<main>
<div class="title">
<h1>Admin</h1>
<img
src="imgs/111.jpg"
class="circle-avatar"
style="width: 250px; height: 250px"
alt=""
/>
<br />
<br />
<div class="point">
<div class="point-num">
<div class="author-name-prefix">5</div>
</div>
<span class="fas fa-star starred"></span>
<span class="fas fa-star starred"></span>
<span class="fas fa-star starred"></span>
<span class="fas fa-star starred"></span>
<span class="fas fa-star starred"></span>
</div>
<div class="comment-count" style="float: right; font-size: 2rem">
MenüPara : 100
</div>
<i class="fas fa-comment" style="float: left"></i>
<div class="comment-count" style="float: left; font-size: 1.5rem">
Yorum sayısı 3
</div>
<br />
<div class="comment-count" style="float: left; font-size: 1.5rem">
Beğeni sayısı 12
</div>
</div>
</main>
<script src="js/userpage.js"></script>
</body>
</html>