-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 2.67 KB
/
index.html
File metadata and controls
99 lines (93 loc) · 2.67 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html
lang="en"
dir="ltr"
>
<head>
<!-- Required meta tags -->
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="title"
content="Hoja De Vida"
/>
<meta
name="description"
content="Descripción de la WEB"
/>
<link
rel="stylesheet"
type="text/css"
href="css/index.css"
/>
<link
rel="stylesheet"
type="text/css"
href="css/menu.css"
/>
<script
src="https://kit.fontawesome.com/8090f6d6a4.js"
crossorigin="anonymous"
></script>
<title>Hoja De Vida</title>
</head>
<body>
<header>
<div id="banner">
<p class="titulo">Curriculum Vitae</p>
<p class="subtitulo">Angie Lisbeth Orozco Peñaranda</p>
<img
src="images\foto_perfil.jpeg"
alt="foto perfil"
/>
</div>
</header>
<nav>
<div id="menu">
<ul style="width: 550px">
<li>
<a href="html/summary.html">Summary</a>
</li>
<li>
<a href="#">Skill</a>
<ul>
<li>
<a href="html/personal.html">Personal</a>
</li>
<li>
<a href="html/academic.html">Academic</a>
</li>
</ul>
</li>
<li>
<a href="html/projects.html">Projects</a>
</li>
<li>
<a href="html/education.html">Education</a>
</li>
</ul>
</div>
</nav>
<main>
<div class="container">
<p class="nombre">Angie Lisbeth Orozco Peñaranda</p>
<div class="center">
<a href="https://web.facebook.com/angie.penaranda.16"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/angie_orozco_07/?hl=es-la"><i class="fab fa-instagram"></i></a>
<a href="https://twitter.com/angie_1635?s=08">
<i class="fab fa-twitter"></i></a>
</div>
</div>
</main>
<footer>
<div id="pie">
Copyright © AÑO 2021 Angie Lisbeth Orozco Peñaranda | 1151798 | angielisebthop@ufps.edu.co
<br /> Programación Web-
<a target="_blank" href="http://ufps.edu.co/">UFPS</a>
<a href="index"><i class="fas fa-home"></i></a>
</footer>
</body>
</html>