forked from solygambas/html-css-javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (65 loc) · 1.84 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
<!-- Based on Terminal Style Landing Page | WinBox.js by Brad Traversy (2021)
see: https://www.youtube.com/watch?v=jQCk2yo10YY -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://rawcdn.githack.com/nextapps-de/winbox/0.2.0/dist/css/winbox.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>Terminal</title>
</head>
<body>
<div class="container">
<nav>
<ul>
<li id="about">/about</li>
<li id="contact">/contact</li>
</ul>
</nav>
<main>
<h1>dtaggart:$<span class="cursor">|</span></h1>
<h3>Find me online:</h3>
<ul>
<li>
<a href="#">YouTube</a>
</li>
<li>
<a href="#">Twitter</a>
</li>
<li>
<a href="#">GitHub</a>
</li>
<li>
<a href="#">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 Dagny Taggart and I have been programming for 14 years.
</p>
<p>
Some of the languages that I am fluent in include JavaScript, Python
and PHP.
</p>
</div>
<div id="contact-content">
<h2>contact-me:$<span class="cursor">|</span></h2>
<p>You can contact me at the email and phone number below</p>
<ul>
<li>Phone: 555-555-5555</li>
<li>Email: [email protected]</li>
</ul>
</div>
</div>
<script src="https://rawcdn.githack.com/nextapps-de/winbox/0.2.0/dist/js/winbox.min.js"></script>
<script src="script.js"></script>
</body>
</html>