-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.97 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link integrity="sha386-zEFjC2vW76F2PhZaewUAr/sLwzCq1XJ5K0T29CZyt2DlhloUAqA2g0++xAcQLTpz" rel="stylesheet" href="../styles/styles.css">
<link rel="icon" href="./images/favicon.ico" type="image/x-icon" />
<title>Khaing Tun - Web Developer</title>
</head>
<body id="index-background">
<header class="nav-header">
<!-- Main menu navigation items -->
<nav class="menu">
<label for="toggle">☰</label>
<input type="checkbox" id="toggle"/>
<div class="menu-items">
<span class="current-page-link"><a href="./index.html">Home</a></span>
<a href="./pages/about.html">About</a>
<a href="./pages/projects.html">Projects</a>
<a href="./pages/blog.html">Blog</a>
<a href="./pages/resume.html">Resume</a>
<a href="./pages/contact.html">Contact</a>
</div>
</nav>
</header>
<!-- Page content -->
<section class="main-text">
<h1>Khaing Tun</h1>
<h2>a Web Developer based in Sydney, Australia</h2>
<!-- linking button to Projects Page -->
<span class="works-button"><a href="./pages/projects.html">View More</a></span>
</section>
<footer>
<!-- Social networking icons -->
<div class="nav-socials">
<a href="https://www.linkedin.com/in/khai-tun-28351020b/"><img src="./images/linkedin-icon.png" alt="linkedin icon"/></a>
<a href="https://twitter.com/Khai57329535"><img src="./images/twitter-icon.png" alt="twitter icon"/></a>
<a href="https://github.com/khaingtt"><img src="./images/github-icon.png" alt="github icon"/></a>
<a href="mailto:khaingtt@outlook.com"><img src="./images/email-icon.png" alt="email icon"/></a>
</div>
<p class="copyright">© 2021 Khaing Tun</p>
</footer>
</body>
</html>