-
Notifications
You must be signed in to change notification settings - Fork 0
/
exemplo1.html
20 lines (18 loc) · 920 Bytes
/
exemplo1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head></head>
<body>
<h1 style="color:green;margin-bottom:32px;font-size:50px;">Primeira aula de Programação Frontend no Lab</h1>
<p>Este é um primeiro exemplo de página HTML. Nessa aula vamos escrever alguns elementos na página e realizar a formatação utilizando CSS.</p>
<h4>Nessa aula vamos estudar um pouco de:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
<p>Agora vamos testar um link para o google clicando
<a style="background:blue; text-decoration:none;padding:10px;color:white;" href="http://www.google.com.br" target="blank">aqui</a>.
</p>
<img style="width:200px;display:block;float:right;" src="imagem.jpg">
<img style="width:200px;display:block;float:left;" src="imagem.jpg">
<img style="width:200px;margin:0 auto;display:block;" src="imagem.jpg">
</body>
</html>