-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·85 lines (81 loc) · 2.55 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="description" content="Desarrollo web para la materia Tecnología
Multimedial 1(2022), FDA, UNLP"/>
<meta name="author" content="Verónica Isoardi"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title> AVI </title>
<!-- Favicon -->
<link rel="icon" type="image/ico" href="assets/img/favicon.ico"/>
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet">
<!-- Locales -->
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/js/script.js"></script>
</head>
<body>
<nav>
<a href="index.html">
<img src="assets/img/small_logo.png" alt="Logo" width="50px"
class="logo"/>
</a>
</nav>
<div class="wrapper">
<h1> Tecnología multimedial 1 </h1>
<p class="subtitle">
Trabajos de la parte de tecnología web de la materia Tecnología
Multimedial 1 que pertenece a la carrera Diseño Multimedial, FDA, UNLP
(2022)
</p>
<section>
<ul>
<li>
<a href="email.html" class="card">
<h2>01</h2>
<h3> Firma de email ✍ </h3>
</a>
</li>
<li>
<a href="card.html" class="card">
<h2>02</h2>
<h3> Tarjeta personal 👋</h3>
</a>
</li>
<li>
<a href="landing.html" class="card">
<h2>03</h2>
<h3> Landing Page 🧑💻</h3>
</a>
</li>
<li>
<a href="portfolio.html" class="card">
<h2>04</h2>
<h3>Portfolio 📚</h3>
</a>
</li>
</ul>
</section>
<div class="push"></div>
</div>
<footer>
<div class="personal-info">
<span class="label">Nombre</span>
<span> Verónica Isoardi </span>
<span class="label">Email</span>
<span> veronica.isoardi@gmail.com </span>
<span class="label">Legajo</span>
<span> 85091/4 </span>
</div>
<a href="index.html">
<img src="assets/img/small_logo.png" alt="Logo" width="250px" />
</a>
</footer>
</body>
</html>