-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/style.css" />
<title>Welcome</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<nav>
<ul>
<li id="about">/about</li>
<li id="contact">/contact</li>
</ul>
</nav>
<main>
<h1>khattaksd:$<span class="cursor">|</span></h1>
<h3>Find me online:</h3>
<ul>
<li>
<a href="https://twitter.com/khattaksd" target="_blank">Twitter</a>
</li>
<li>
<a href="https://www.linkedin.com/in/khattak" target="_blank">LinkedIn</a>
</li>
<li>
<a href="https://github.com/khattaksd" target="_blank">Github</a>
</li>
<li>
<a href="https://codepen.io/khattaksd" target="_blank">Codepen</a>
</li>
</ul>
</main>
</div>
<div class="hidden">
<div id="about-content">
<h2>about-me:$<span class="cursor">|</span></h2>
<p>My name is Salman Khattak and I have been programming for a very long time.</p>
<p>
Some of the languages that I am fluent in include Java, JavaScript and C++ where as some
I am not so fluent in include Python and PHP.
</p>
<p>This site is inspired (shamelessly cloned) from
<a href="https://github.com/bradtraversy/terminal-landing-page" target="_blank">bradtraversy's terminal-landing-page</a></p>
</div>
<div id="contact-content">
<h2>contact-me:$<span class="cursor">|</span></h2>
<p>You can reach at [email protected]</p>
</div>
</div>
<script type="module" src="/js/winbox.bundle.js"></script>
<script type="module" src="/js/main.js"></script>
</body>
</html>