-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div id="container">
<div id="sideBarContainer">
<img id="profilePic" src="assets/profile.jpg" alt="프로필사진">
<ul id="menuContainer">
<li><a href="/index.html"><img src="assets/icons/home/home (1).png" alt=""></a></li>
<li><a href="/aboutme.html"><img src="assets/icons/resume/free-icon-font-resume.png" alt=""></a></li>
<li><a href="/project.html"><img src="assets/icons/project/apps.png" alt=""></a></li>
</ul>
<div id="line"></div>
<p id="updateLog">last update 2024.06.20</p>
</div>
<div id="contentContainer">
<div id="mainContainer">
<div id="textTypingContainer">
<span class="textArea"></span><span class="blink">|</span>
</div>
<p id="description">Try clicking another icon in the sidebar!</p>
</div>
<div id="infoContainer">
</div>
</div>
</div>
</body>
<script src="app.js"></script>
</html>