forked from Davina-dev/practice1-HTMLPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./assets/img/avatarDavina.png" />
<link rel="stylesheet" href="./assets/style/style.css" />
<title>Davina's Portfolio</title>
</head>
<body>
<header>
<div class="toolbar">
<div class="toolbar_logo">
<img src="./assets/img/logoDavina.png" title="icon menu" alt="menu" />
</div>
<span class="toolbar_span-menu">
<img src="./assets/img/menu.png" />
</span>
<div class="toolbar_nav">
<a href="">
<img src="./assets/img/article.png" alt="" />
<p>Article</p>
</a>
<a href="">
<img src="./assets/img/projects.png" alt="" />
<p>Projects</p>
</a>
<a href="">
<img src="./assets/img/aboutMe.png" alt="" />
<p>About me</p>
</a>
</div>
<aside class="aside">aside lista</aside>
</div>
</header>
<main>
<section class="hero">
<h1>Davina Medina Ramírez</h1>
<h2>
Apasionada de las nuevas tecnologías, intentando siempre aprender y
mejorar tanto en el ámbito laboral como personal.
</h2>
<a href="#" class="btn ln"></a>
<a href="#" class="btn cv"></a>
<a href="#" class="btn"></a>
</section>
<div class="highlights" id="DOMcardsProjects">
<!-- Los cards se generan en Javascript -->
</div>
</main>
<footer>
<img src="/assets/img/logoDavina.pink.png" type="module" alt="" />
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>