-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (67 loc) · 2.54 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
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 lang="kr">
<head>
<meta charset="UTF-8">
<link rel = "stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel = "stylesheet" href="style.css">
<title>S. PARK | Home</title>
</head>
<body>
<div class="container">
<nav>
<!--Logo link-->
<div class="logo"><a href="index.html" style="text-decoration:none">spark</a></div>
<!--nav menu-->
<ul class="navItems">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="skills.html">skills</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
<!--SNS links-->
<div class="links">
<a href="https://www.linkedin.com/in/sangwoo-park-61902b66/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/sankoo_park/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/Luna0214" target="_blank"><i class="fab fa-github"></i></a>
</div>
</nav>
<!--Home banner-->
<div class="wrapper">
<div class="cols cols0">
<span class="topline">Hello</span>
<h1>I'm <span class="multiText"></span></h1>
<p>Greetings! I hope you like this website.</p>
<!--bottons-->
<div class="btns">
<button type="button" onclick="location.href='skills.html'">What Can I do for you?</button>
<button type="button" onclick="location.href='contact.html'">Contact Me</button>
</div>
</div>
<!--home images-->
<div class="cols cols1">
<div class="imgbox">
<img src="./imgs/splash.png" id="splash">
<img src="./imgs/brain.png">
</div>
</div>
</div>
</div>
<!--typing effect-->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script>
var typingEffect = new Typed(".multiText", {
strings : ["Sangwoo", "Developer"],
loop : true,
typeSpeed : 100,
backSpeed : 80,
backDelay : 1500
})
</script>
</body>
<footer>
<div class="footer-section">
<h5>Author: Sangwoo Park</h5>
<p>ⓒ 2023 SPARK Personal Website. All rights reserved.</p>
</div>
</footer>
</html>