-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimer-inicio.html
45 lines (45 loc) · 1.6 KB
/
primer-inicio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Página Principal</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="primer-styles.css">
<link rel="icon" href="favicon.png" type="image/gif">
</head>
<body>
<header class="main-header">
<h1 class="main__title">Proyectos</h1>
</header>
<section class="section">
<div class="main-container main-gallery">
<article class="article">
<a href="/template-speaker/template-speaker.html" class="gallery__item">
<figure>
<img src="img/template-speaker.png" alt="Página web 'Template Speaker'" title="Página web 'Template Speaker'">
<figcaption>"Template Speaker"</figcaption>
</figure>
</a>
</article>
<article class="article">
<a href="/basic/basic.html" class="gallery__item">
<figure>
<img src="img/basic.png" alt="Página web 'Basic'" title="Página web 'Basic'" >
<figcaption>"Basic"</figcaption>
</figure>
</a>
</article>
<article class="article">
<a href="/photographic/photographic.html" class="gallery__item">
<figure>
<img src="img/photographic.png" alt="Página web 'Photographic'" title="Página web 'Photographic'">
<figcaption>"Photographic"</figcaption>
</figure>
</a>
</article>
</div>
</section>
</body>
</html>