quinta-feira, 15 de dezembro de 2016

CSS- externo com HTML- Aula8

HTML com CSS Externo

Segue o terceiro exemplo com Externo:

ESTILOS_02.css
-----------------------------------------------------------------------
body
{
background-color:green;
}

h1 {
font-family:tahoma;
font-size:50px;
color:blue; 
text-transform: uppercase;
}

h2 {
color: yellow;
text-transform: none;
}

p {
text-indent: 1cm;
line-height: 20px;
text-align: left;
}
-------------------------------------------------------------------------------
exerciciocssexterno.html

<html>
<head>
<title>Matérias Wed</title>
<link rel="stylesheet" type="text/css" href="ESTILOS_02.css"/>
</head>
<body>
<h1> Materias Web </h1>
<h2> WEB1</h2><p>HTML+CSS</p>
<h2> WEB2</h2><p>JavaScript + XML</p>
<h2> DESV.WEB</h2><p>NetBeans+JDK</p>
<h2> PROGR.WEB</h2><p>PHP+MySQL</p>
</body>
</html>
-------------------------------------------------------------------------------


Nenhum comentário:

Postar um comentário