-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 1.87 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About Remil</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="page">
<header>
<h1>About Me</h1>
</header>
<section id="me_section" class="bio_section">
<h2 class="bio_section_heading">Remil Marzan</h2>
<ul class="bio_section_content">
<li>sneakerhead</li>
<li>AF vet</li>
<li>daytrader</li>
<li>aspiring dev</li>
<li>VA >> LA >> SEA</li>
</ul>
</section>
<section class="bio_section">
<h2 class="bio_section_heading">Purpose</h2>
<p class="bio_section_content">To join the hip-hop/rap group known as the <em>Remy Boyz</em></p>
</section>
<section class="bio_section">
<h2 class="bio_section_heading">Relevent History</h2>
<ul class="bio_section_content">
<li>Nickname has been Remy since 2005</li>
<li>First CD purchase was of the hip-hop genre</li>
<li>A repertoire of a few hip hop dance moves</li>
</ul>
</section>
<section class="bio_section">
<h2 class="bio_section_heading">Additional Information</h2>
<ul class="bio_section_content">
<li>Increased diversity of group</li>
<li>Technical skills would be a great addition</li>
<li>Violin skills could add a symphonic element to the music</li>
</ul>
</section>
<section class="bio_section">
<h2 class="bio_section_heading">Top Ten Songs</h2>
<ol class="bio_section_content">
<li>Gold Digger</li>
<li>In Da Club</li>
<li>Yeah!</li>
<li>Hey Ya!</li>
<li>Work It</li>
<li>Empire State of Mind</li>
<li>Umbrella</li>
<li>No One</li>
<li>Stronger</li>
<li>SexyBack</li>
</ol>
</section>
</div>
<script src="app.js"></script>
</body>
</html>