forked from mmistakes/minimal-mistakes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (112 loc) · 3.59 KB
/
index.html
File metadata and controls
136 lines (112 loc) · 3.59 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>magobbing blog</title>
<link rel="stylesheet" href="assets/css/style.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
text-align: center;
padding: 30px;
}
h1 {
color: #2c3e50;
}
p {
font-size: 18px;
color: #34495e;
}
img {
border-radius: 10px;
margin: 20px 0;
}
iframe {
margin: 20px 0;
box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #2980b9;
}
.publications {
margin-top: 40px;
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
display: inline-block;
text-align: left;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.publications h2 {
color: #2c3e50;
margin-bottom: 15px;
}
.publications p {
font-size: 16px;
color: #2c3e50;
line-height: 1.6;
}
.publications a {
color: #3498db;
background-color: transparent;
padding: 0;
}
</style>
</head>
<body>
<h1>webpage 이원</h1>
<!-- 사진 -->
<img src="me.jpg" alt="내 사진" width="300">
<p>나의 전공은 <strong>심리학</strong>이고 <strong>임상신경심리대학원</strong> 전공 예정입니다.</p>
<!-- 관심 분야 -->
<section class="interests">
<h2>Interested</h2>
<ul>
<li><span>🧠</span>Neuropsychology</li>
<li><span>🩺</span> Clinical Psychology</li>
<li><span>📊</span> Statistics</li>
</ul>
</section>
<!-- 유튜브 소개 영상 -->
<h2>좋아하는 것</h2>
<iframe width="640" height="360"
src="https://www.youtube.com/embed/5l8gIRUfhjc"
frameborder="0" allowfullscreen>
</iframe>
<!-- 노션 링크 -->
<h2>Notion</h2>
<a href="https://www.notion.so/b8b512d45f214d69be0c6b680fa541b8?pvs=4" class="button">Notion</a>
<!-- 블로그 버튼 추가 -->
<h2>Blog</h2>
<a href="/blog/" class="button">📚 Blog</a>
<!-- Publications -->
<div class="publications">
<h2>Publications</h2>
<p>
Yang, I., Kim, I., Kim, J. (2024). Classifying and Representing Emotions based on EEG Data Collected with Wearable Devices.
<em>Korean Society for Emotion and Sensibility, 27(4), 65-74.</em>
<br>
DOI: <a href="https://doi.org/10.14695/KJSOS.2024.27.4.63" target="_blank">https://doi.org/10.14695/KJSOS.2024.27.4.63</a>
</p>
</div>
<!-- 방명록 -->
<h2>방명록 남기기</h2>
<form action="/submit" method="POST">
<label for="name">이름:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="message">메시지:</label><br>
<textarea id="message" name="message" rows="4" cols="40"></textarea><br><br>
<button type="submit">제출</button>
</form>
</body>
</html>