-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (87 loc) · 3.42 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="ie=edge" http-equiv="X-UA-Compatible">
<link href="assets/css/reset.css" rel="stylesheet">
<link href="assets/css/portfolio.css" rel="stylesheet">
<title>Home</title>
</head>
<body>
<div class="content">
<!-- HEADER -->
<header class="site-header">
<div class="logo-box">
<img alt="Site Logo" src="assets/img/heart.svg">
<h2>Jonghun Park</h2>
</div>
<nav class="site-navigation">
<ul>
<li><a href=".">Home</a></li>
<li><a href="contact">Contact Me</a></li>
<li><a href="projects">Projects</a></li>
<li><a href="demos">Demonstrations</a></li>
<li><a href="résumé">Résumé</a></li>
</ul>
</nav>
</header>
<!-- MAIN -->
<main class="wrapper">
<div class="main-container">
<section class="hero-box">
<img alt="Laptop Photo" src="assets/img/hero-image-1.jpg">
<h1>Looking For A Developer?</h1>
</section>
<section class="about-me">
<div class="copy-phrase">
<h3>Empower your digital presence with</h3>
<h3>intelligent and impactful mobile apps and websites</h3>
<h3>that just work.</h3>
</div>
<div class="hidden-button">
<button><a href="projects">View Portfolio</a></button>
</div>
</section>
</div>
</main>
<!-- FOOTER -->
<footer class="site-footer">
<div class="footer-image">
<img alt="Footer Logo" src="assets/img/wink.svg">
</div>
<section class="footer-main">
<div class="footer-main-copyright">
<h4>© Copyright 2023, Jonghun Park, All rights reserved.</h4>
<p>Please respect my copyright, and be given permission to make use of the content via the contact page
before use.</p>
</div>
<div class="footer-main-link">
<ul>
<li><a href="contact">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<div class="sns-link">
<ul>
<li><a href="#"><img alt="GitHub" class="link-img" src="assets/img/github.svg"></a></li>
<li><a href="#"><img alt="Facebook" class="link-img" src="assets/img/facebook.svg"></a></li>
<li><a href="#"><img alt="Twitter" class="link-img" src="assets/img/twitter.svg"></a></li>
<li><a href="#"><img alt="TikTok" class="link-img" src="assets/img/tiktok.svg"></a></li>
<li><a href="#"><img alt="Steam" class="link-img" src="assets/img/steam.svg"></a></li>
</ul>
</div>
</div>
</section>
<div class="footer-link">
<h4>Links</h4>
<ul>
<li><a href="contact">Contact Me</a></li>
<li><a href="projects">Projects</a></li>
<li><a href="demos">Demonstrations</a></li>
<li><a href="résumé">Résumé</a></li>
</ul>
</div>
</footer>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>