HTML y CSS parte 1: mi primera página - 06
tags header, y uso de css class - termino del curso
This commit is contained in:
parent
248555a8b5
commit
59cc7e5d97
@ -10,7 +10,7 @@ Diferencias entre [html y css](https://www.aluracursos.com/blog/html-css-javascr
|
||||
|
||||
> en NeoVim `set ff=unix`
|
||||
|
||||
Página [barbería](./index.html).
|
||||
Página [barbería](./index.html) - estilo.[css](./style.css).
|
||||
|
||||
Formas de aplicar estilo CSS:
|
||||
|
||||
@ -74,3 +74,4 @@ La representación de los colores en 6 posiciones
|
||||
- Copywriter (Generador de Contenido)
|
||||
- SEO (Search Engine Optimization)
|
||||
|
||||
Final curso HTML5 y CSS parte 1 - Página [barbería](./index.html) - estilo.[css](./style.css).
|
||||
|
@ -7,6 +7,9 @@
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<header><h1 id="header">Barbería Alura</h1></header>
|
||||
</div>
|
||||
<img id="banner"
|
||||
src="./banner/banner.jpg"
|
||||
alt="barbería con dos sillas, fondo con dos espejos y muchos cuadros"/>
|
||||
|
@ -6,6 +6,18 @@ body{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding-top: 2px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
#header {
|
||||
font-size: 64px;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
p{
|
||||
color: #FFFCC6;
|
||||
text-align: center;
|
||||
|
Loading…
Reference in New Issue
Block a user