-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (88 loc) · 2.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html> <!--type of document this is, html-->
<html lang="en"> <!--english-->
<head>
<meta charset="UTF-8"> <!--character set-->
<title>Rah Co.</title> <!--title on the tab-->
</head>
<header>
<h5>
<a href="index.html">HOME</a>
<a href="discography.html">DISCOGRAPHY</a>
<a href="videos.html">VIDEOS</a>
<a href="store.html">STORE</a>
<a href="contact-me.html">CONTACT ME</a>
<a>THE HARRIS CODE</a>
</h5>
</header>
<body>
<h1><em>Sir Rah</em></h1> <!--<em> is emphasis-->
<p><em>founder of <strong>Rah Co.</strong></em></p> <!--<strong> is bold-->
<p><strong>Sir Rah</strong> is an innovator who strives to
create in all aspects of his life. <strong> Sir Rah
</strong> is a musician that expresses himself through
sounds and sonics. <strong>Sir Rah</strong> is an
artist dedicated to connecting with the world in any
atmosphere/environment.
</p>
<img src="Images/RAH1.png" atl="RAH">
<img src="Images/RAH2.png" alt="RAH">
<hr>
<table cellspacing="10">
<thead>
<tr>
<th>YEAR</th>
<th>ERA</th>
<th>DESCRIPTION</th>
</tr>
</thead>
<tbody>
<tr>
<td>2020</td>
<td>RAH RAH</td>
<td><em>sunrays beaming on ya black skin, birth of rah, new beginnings</em></td>
</tr>
<tr>
<td>2021</td>
<td>RENNY</td>
<td><em>learning the ins & outs and having fun, meeting new people, doing new shit</em></td>
</tr>
<tr>
<td>2022</td>
<td>SIR RAH</td>
<td><em>in my bag, feeling seasoned, man this shit too easy</em></td>
</tr>
</tbody>
</table>
<hr>
<table cellspacing="10">
<thead>
<tr>
<th>Skill</th>
<th>Rating</th>
</tr>
</thead>
<tbody>
<tr>
<td>Writing</td>
<td>⭐⭐⭐⭐☆</td>
</tr>
<tr>
<td>Flow</td>
<td>⭐⭐⭐☆☆</td>
</tr>
<tr>
<td>Cadence</td>
<td>⭐⭐⭐⭐☆</td>
</tr>
<tr>
<td>Stage Presence</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Diversity</td>
<td>⭐⭐⭐☆☆</td>
</tr>
</tbody>
</table>
</body>
</html>