-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (95 loc) · 3.26 KB
/
index.html
File metadata and controls
110 lines (95 loc) · 3.26 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Man, The Myth, The Legend</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<header>
<!-- navigation -->
<h1>
Sterlyn Kong
</h1>
<nav>
<!-- Unordered list element -->
<ul>
<!-- List item element -->
<li>
<!-- Anchor element -->
<a href="#about-me">About Me</a>
</li>
<li>
<a href="#my-projects">Work</a>
</li>
<li>
<a href="#contact-me">Contact Me</a>
</li>
<li>
<a href="#my-resume">Resume</a>
</li>
</ul>
</nav>
</header>
<!-- jumbotron -->
<div class="hero">
<h2>Wistful Wonderment Wrought Here</h2>
</div>
<section id="about-me">
<div class="section-head">
<h2 class="section-title">
About<br>Me
</h2>
</div>
<div class="section-content">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolores quibusdam accusamus, assumenda sit
distinctio molestiae animi soluta unde ducimus enim atque et eum quos culpa, ratione illum aut
laudantium
odio.
</p>
</div>
</section>
<section id="my-projects">
<div class="section-head">
<h2 class="section-title">
Work
</h2>
</div>
<div id="project-display">
<div id="showcase">
<a href="https://leggeamy.github.io/Daily-Dashboard/" target="_bank"><p>Daily Dashboard - Click to exerience!</p></a>
</div>
<div id="rank-2" class="regular">
<a href="https://sterlynkong.github.io/password-generator/" target="_bank"><p>Password Generator - Click to exerience!</p></a>
</div>
<div id="rank-3" class="regular">
<a href="https://fr33bi3z.herokuapp.com/login" target="_bank"><p>Freebiez - Click to experience!</p></a>
</div>
<div id="rank-4" class="regular">
<p>Rank 4 summary</p>
</div>
<div id="rank-5" class="regular">
<p>Rank 5 summary</p>
</div>
</div>
</section>
<section id="contact-me">
<div class="section-head">
<h2 class="section-title">
Contact<br>Me
</h2>
</div>
<div id="contact-info" class="section-content">
<address>
<a href="tel:+15555555555">+1 (555) 555-5555</a>
<a href="mailto:sterlyn.kong@icloud.com">sterlyn.kong@icloud.com</a>
<a href="https://github.com/SterlynKong/Portfolio">GitHub</a>
<a href="https://twitter.com/young_ancient">Twitter</a>
<a href="https:www.google.com">Apple Music</a>
</address>
</div>
</section>
</body>
</html>