forked from asantoflaminio/TechHaus_Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.html
76 lines (71 loc) · 2.52 KB
/
profiles.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TechHaus</title>
<link rel="stylesheet" type="text/css" href="profiles.css"/>
</head>
<body>
<nav>
<img src="Iconos/Logo4.png" alt="Home" id="logo">
</nav>
<section>
<h1 class="profiles_box_title">SELECT PROFILE</h1>
<div class="profiles_list_box">
<ul class="profiles_list">
<a href="./home_barra.html">
<li class="a_profile">
<div>
<img src="Iconos/marta.png" alt="ProfilePicture" class="profile_picture">
</div>
<div>
<h3 class="profile_name">Marta Suarez</h3>
</div>
<div>
<img src="Iconos/arrow_forward.png" alt="Enter" class="arrow_icon">
</div>
</li>
</a>
<li class="a_profile">
<div>
<img src="Iconos/esposomarta.png" alt="ProfilePicture" class="profile_picture">
</div>
<div>
<h3 class="profile_name">Eduardo Suarez</h3>
</div>
<div>
<img src="Iconos/arrow_forward.png" alt="Enter" class="arrow_icon">
</div>
</li>
<li class="a_profile">
<div>
<img src="Iconos/hijamarta.png" alt="ProfilePicture" class="profile_picture">
</div>
<div>
<h3 class="profile_name">Mia Suarez</h3>
</div>
<div>
<img src="Iconos/arrow_forward.png" alt="Enter" class="arrow_icon">
</div>
</li>
<li class="a_profile">
<div>
<img src="Iconos/add.png" alt="Add" class="profile_picture">
</div>
<div>
<h3 class="profile_name">Create new profile</h3>
</div>
</li>
</ul>
</div>
</section>
<footer>
<div id="footer">
<p>Copyright © 2018, TechHaus. All rights reserved.</p>
</div>
</footer>
<noscript>
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=ShowErrorPage.html">
</noscript>
</body>
</html>