-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomeworkcss.html
52 lines (41 loc) · 1.68 KB
/
homeworkcss.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
<!DOCTYPE html>
<lang="en">
<head>
<meta charset="UTF-8">
<meta name ="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./resethomework.css"/>
<link rel="stylesheet" href="./estilos.css" />
<title>Una Pagina Para Hacer Estilos de CSS</title>
</head>
<body>
<header>
<div id="titulos">
<h1 class="title" id="principal">Una Pagina Para Hacer Estilos de CSS</h1>
<h2 class="title">Ilana Gleiser</h2>
</header>
<main>
<article>
<h3 class="title">Full Stack Developer</h3>
<p>Hola. Me llamo Ilana. Esta es una pagina de prueba del modulo 4 de soyhenry.com, donde aprendi como ponerle estilos de CSS a una pagina de HTML.</p>
</article>
<article>
<div id="cards-container">
<div class="cards">
<h4 class="title">HTML</h4>
<img src="HTML5_logo.png" class="logo"/>
</div>
<div class="cards">
<h4 class="title">CSS</h4>
<img src="OIP.jpg" class="logo"/>
</div>
<div class="cards">
<h4 class="title">JavaScript</h4>
<img src="th.jpg" class="logo"/>
</div>
</div>
</article>
</main>
<footer>
<p>Si Quieres contactarme puedes usar este <a href="">Formulario de Contacto</a></p>
</footer>
</body>