-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathandrea.html
101 lines (98 loc) · 4 KB
/
andrea.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="es">
<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" />
<title>Team Coders</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<a href="index.html" class="logo">
<span class="logo-team">Team</span>Coders
</a>
<ul class="menu">
<li class="menu-links">
<a href="about.html" class="text-link">Somos</a>
</li>
<li class="menu-links">
<a href="equipo.html" class="text-link">Equipo</a>
</li>
<a class="menu-links" href="contact.html">
<button class="button-contacto text-link">Contáctanos</button>
</a>
</ul>
</nav>
<section>
<div class="content-burbuja">
<div class="burbuja">
<img class="profile-image-pricipal" src="assets/andrea-profile.png" alt="Andrea profile" />
</div>
</div>
<div class="burbuja-text-box">
<h1>Andrea Gómez</h1>
<h2>Junior Front End Developer</h2>
<p class="text-profile">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen booknknown
printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="buttons-principal-profile">
<a class="linkedin-link" href="https://www.linkedin.com/in/andrea-g%C3%B3mez-portero-aa85b21b5">
<img class="linkedin" src="assets/linkedin-blanco.svg" alt="Linkedin icon" />
</a>
<button class="yellow-button">Te llamamos</button>
</div>
</div>
</section>
<footer>
<div class="user-profile">
<div class="profile-img">
<a href="yenifer.html">
<img src="assets/yenifer-profile.png" alt="Yenifer profile" />
</a>
</div>
<h3>Yenifer Romero</h3>
<p>Junior Front End development</p>
<a href="https://www.linkedin.com/in/yeniiferromero/">
<img class="linkedin" src="assets/linkedin.svg" alt="Linkedin icon" />
</a>
</div>
<div class="user-profile">
<div class="profile-img">
<a href="po.html">
<img src="assets/po-profile.png" alt="Po profile" />
</a>
</div>
<h3>Po Chan</h3>
<p>Junior Front End development</p>
<a href="https://www.linkedin.com/in/po-chan-62230367">
<img class="linkedin" src="assets/linkedin.svg" alt="Linkedin icon" />
</a>
</div>
<div class="user-profile">
<div class="profile-img">
<a href="andrea.html">
<img src="assets/andrea-profile.png" alt="Andrea profile" />
</a>
</div>
<h3>Andrea Gómez</h3>
<p>Junior Front End development</p>
<a href="https://www.linkedin.com/in/andrea-g%C3%B3mez-portero-aa85b21b5">
<img class="linkedin" src="assets/linkedin.svg" alt="Linkedin icon" />
</a>
</div>
<div class="user-profile">
<div class="profile-img">
<a href="cristina.html">
<img src="assets/cris-profile.png" alt="Cristina profile" /></a>
</div>
<h3>Cristina Hidalgo</h3>
<p>Junior Front End development</p>
<a href="https://www.linkedin.com/in/cristina-hidalgo-l%C3%B3pez-3898b1128/">
<img class="linkedin" src="assets/linkedin.svg" alt="Linkedin icon" />
</a>
</div>
</footer>
</body>
</html>