-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.43 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
<!DOCTYPE HTML>
<html>
<head>
<title>HTML e CSS do Zero - jCursos/Github</title>
</head>
<body style="text-align:center; background-color: orange; color: #fff; font-family: Arial; background-image: url(images/bg.jpg); background-position: top center;">
<br>
<img src="images/logo.png" alt="jCursos">
<br>
<h1>HTML e CSS do Zero</h1>
<p><i>Em breve, curso de HTML e CSS online.</i></p>
<br>
<h2>Redes Sociais</h2>
<ul style="padding:0">
<li style="display:inline-block; width: 100px;">
<a href="https://www.facebook.com/jcursos" target="_blank">
<img src="images/facebook.png" alt="Facebook sobre cursos online">
</a>
<a style="color:red" href="https://www.facebook.com/jcursos" target="_blank">
<h3>Facebook</h3>
</a>
</li>
<li style="display:inline-block; width: 100px;">
<a href="https://twitter.com/jcursos" target="_blank">
<img src="images/twitter.png" alt="Twitter sobre cursos online">
</a>
<a style="color:red" href="https://twitter.com/jcursos" target="_blank">
<h3>Twitter</h3>
</a>
</li>
<li style="display:inline-block; width: 100px;">
<a href="http://www.youtube.com/user/jcursosjoomla" target="_blank">
<img src="images/youtube.png" width="64" height="64" alt="Vídeos aulas online">
</a>
<a style="color:red" href="http://www.youtube.com/user/jcursosjoomla" target="_blank">
<h3>Youtube</h3>
</a>
</li>
</ul>
</body>
</html>