forked from tiy-orl/html-css-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroupgithub.html
More file actions
37 lines (35 loc) · 1.68 KB
/
Copy pathgroupgithub.html
File metadata and controls
37 lines (35 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Class Github pages</title>
<style>
.emphasized {
background: #000;
color: #fff;
}
</style>
</head>
<body>
<ul>
<li><a href="https://github.com/conshus" target="_blank"><strong><em>Dwane Hemmings</em></strong></a></li>
<li><a href="https://github.com/tyjdavis" target="_blank">Tyler Davis</a></li>
<li><a href="https://github.com/ChrisLebbano" target="_blank">Chris Lebbano</a></li>
<li><a href="https://github.com/JCR08" target="_blank">J.C. Rowell</a></li>
<li><a href="https://github.com/Filusmarvin" target="_blank">Marvin Filus</a></li>
<li><a href="https://github.com/WJWJR" target="_blank">William J Weeks Jr</a></li>
<li><a href="https://github.com/ddsheard" target="_blank">Detra Sheard</a></li>
<li><a href="https://github.com/Ochanya" target="_blank">Ochanya</a></li>
</ul>
<ul>
<li><a href="https://github.com/conshus" target="_blank"><img src=""><strong><em>Dwane Hemmings</em></strong></a></li>
<li><a href="https://github.com/tyjdavis" target="_blank">Tyler Davis</a></li>
<li><a href="https://github.com/ChrisLebbano" target="_blank">Chris Lebbano</a></li>
<li><a href="https://github.com/JCR08" target="_blank">J.C. Rowell</a></li>
<li><a href="https://github.com/Filusmarvin" target="_blank">Marvin Filus</a></li>
<li><a href="https://github.com/WJWJR" target="_blank">William J Weeks Jr</a></li>
<li><a href="https://github.com/ddsheard" target="_blank">Detra Sheard</a></li>
<li><a href="https://github.com/Ochanya" target="_blank">Ochanya</a></li>
</ul>
</body>
</html>