-
Notifications
You must be signed in to change notification settings - Fork 1
/
2-profile-list.html
73 lines (72 loc) · 2.03 KB
/
2-profile-list.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
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://cdn.tailwindcss.com"></script>
<script src="./js/nav.js"></script>
<script src="./js/2-profile-list.js"></script>
<link rel="icon" href="./img/mayI_logo.png">
<title>May-I</title>
</head>
<div id="navDiv"></div>
<div class="container px-10 mx-auto">
<div class="flex flex-wrap px-10 justify-evenly" id="profile">
<!-- <div class="w-18 py-10">
<div class="bg-white shadow-2xl rounded-2xl p-4">
<div class="flex mb-3 justify-end">
<img
src="./img/verify.svg"
alt=""
width="30"
height="28"
/>
</div>
<div class="flex items-center mb-4">
<div class="rounded-full object-cover">
<img
src="./img/blank.svg"
alt=""
width="90"
height="90"
/>
</div>
<div class="pl-4">
<p class="font-bold">김산보</p>
<p class="text-gray-700">중앙대학교 산업보안학과 교수</p>
</div>
</div>
<p class="mb-5 border-2 rounded-full text-center text-black w-20">
#블록체인
</p>
<div class="flex justify-evenly space-x-2">
<img
src="./img/comment.svg"
alt=""
width="20"
height="18"
/>
<p>95%</p>
<img
src="./img/response-time.svg"
alt=""
width="20"
height="18"
/>
<p>30분 이내</p>
<img
src="./img/history.svg"
alt=""
width="20"
height="18"
/>
<p>최근 1일 이내</p>
</div>
</div>
</div> -->
</div>
</div>
</body>
</html>