-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
109 lines (102 loc) · 4.56 KB
/
profile.html
File metadata and controls
109 lines (102 loc) · 4.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>SchoolTalks</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.svg" />
<!-- Place favicon.ico in the root directory -->
<!-- Web Font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- ========================= CSS here ========================= -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/LineIcons.2.0.css" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/tiny-slider.css" />
<link rel="stylesheet" href="assets/css/glightbox.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/profile.css" />
</head>
<body>
<!-- Preloader -->
<div class="preloader" >
<div class="preloader-inner">
<div class="preloader-icon">
<span></span>
<span></span>
</div>
</div>
</div>
<!-- /End Preloader -->
<!-- Start Header Area -->
<header data-include-file="/header.html" class="header navbar-area includeJs"></header>
<!-- /End Header Area -->
<!-- /Start Content -->
<section class="hero-area" style="height: 13vh;">
</section>
<section class="hero-area">
<div class="container">
<div class="row">
<h1 class="mt-3 text-center">😆 사용자 정보</h1>
<div class="col-md-4 profile-container">
<div class="profile-info">
<div class="userimg text-center">
<!-- 프로필 사진 -->
<img id="profile-picture" src="/assets/images/profile/basic.png" alt="프로필 사진" class="img-fluid rounded-circle profile-image mx-auto">
</div>
<br><br>
<div id="user-info" style="font-size: 25px;">
<p><strong>📍 닉네임 :</strong> <span id="nickname"></span></p>
<p><strong>📍 학교 :</strong> <span id="school"></span></p>
<p><strong>📍 이름 :</strong> <span id="name"></span></p>
<p><strong>📍 학년 :</strong> <span id="grade"></span></p>
<p><strong>📍 자기 소개 :</strong> <span id="about-me"></span></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="hero-area" style="height: 15vh;">
</section>
<!--/ End Content -->
<!-- Start Footer Area -->
<footer class="footer">
<div class="footer-bottom">
<div class="container">
<div class="inner">
<div class="row">
<div class="col-12">
<div class="left">
<p>Designed and Developed by<a href="https://graygrids.com/" rel="nofollow"
target="_blank">GrayGrids</a></p>
<p>- School Talks Project -</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--/ End Footer Area -->
<!-- ========================= scroll-top ========================= -->
<a href="#" class="scroll-top btn-hover">
<i class="lni lni-chevron-up"></i>
</a>
<!-- ========================= JS here ========================= -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/count-up.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/tiny-slider.js"></script>
<script src="assets/js/glightbox.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/logout.js"></script>
<script src="assets/js/include.js"></script>
<script src="assets/js/profile.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</body>
</html>