-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (54 loc) · 2.17 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-------------------Title---------------------->
<title>NLW Esports </title>
<!-------------------Custom CSS---------------------->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="header">
<h2>My games</h2>
<p>What I like to play!</p>
</div>
<section>
<div>
<ul class="games-list">
<li> <img src="assets/lol.jpg" alt="LOL"></li>
<li> <img src="assets/vava.jpg" alt="Valorant"></li>
<li> <img src="assets/csgo.jpg" alt="Cs Go" width="170" height="120"> </li>
</ul>
</div>
</section>
<h2 class="h3">Streamers and channels</h2>
<p class="p1"> List of channels and streamers not to be missed!</p>
<section><div>
<ol>
<ul class="streamers">
<li> <img src="assets/gau.jpg" alt="Gaules" width="140" height="190"></li>
<li> <img src="assets/tiger.png" alt="https://www.twitch.tv/mch_agg" width="140" height="190"></li>
<li> <img src="assets/esl.jpeg" alt="Cs Go" width="140" height="190"> </li>
</ul>
</ol>
</div>
</section>
<h2>My Social Networks</h2>
<p class="p2"> Connect with me right now! </p>
<aside>
<ol>
<ul class="redes">
<a href="https://www.facebook.com/lucas.santos.90834776" target="_blank">
<li> <img src="assets/face.png" class="img-redes" alt="Facebook"></li></a>
<a href="https://www.instagram.com/lucassantosdl/" target="_blank">
<li> <img src= "assets/insta.png" class="img-redes" alt="Instagram"></li> </a>
<a href="https://www.linkedin.com/in/lucassantosdl/" target="_blank">
<li> <img src="assets/link.png" class="img-redes" alt=" Linkedin"></li> </a>
<a href="https://github.com/lucassantosdl" target="_blank">
<li> <img src= "assets/github-removebg-preview.png" alt="Github"></li></a>
</ul>
</aside>
</body>
</html>