-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (97 loc) · 2.97 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Isabel Mun website</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Paytone+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet">"
</head>
<body>
<header class="encabezado">
<nav>
<ul>
<li class="home">
<a href="isbelmun.github.io">Home</a>
</li>
<li class="info">
<a href="#info">Info</a>
</li>
<li class="skills">
<a href="#skills">Skills</a>
</li>
<li class="contact">
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="main-title">
<h1><strong>isabel mun</strong></h1>
<h3>Adalaber y Adalover</h3>
</div>
<div class="sidelinks-container">
<ul class="side-links">
<li class="dribble">
<a href="https://dribbble.com/isbelmun"><img src="images/dribbble.png" alt="dribbble-icon"></a>
</li>
<li class="twitter">
<a href="https://twitter.com/isbelmun"><img src="images/twitter.png" alt="twitter-icon"></a>
</li>
<li class="github">
<a href="https://github.com/Isbelmun"><img src="images/github.png" alt="github-icon"></a>
</li>
</ul>
</div>
<div id="info">
<h1 id="infohead">Info</h1>
<p> Experimentando con el desarrollo web gracias al apoyo de <a style="text-decoration:none" href="http://adalab.es/">Adalab</a><br>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div id="skills">
<h1 id="skillshead">Skills</h1>
<table>
<thead>
<tr>
<th>Skill</th>
<th>level</th>
</tr>
</thead>
<tbody>
<tr>
<td>Photoshop</td>
<td>advanced</td>
</tr>
<tr>
<td>Illustrator</td>
<td>intermediate</td>
</tr>
<tr>
<td>Indesign</td>
<td>beginner</td>
</tr>
<tr>
<td>english</td>
<td>advanced</td>
</tr>
</tbody>
</table>
</div>
<footer>
<div>
<ul>
<li class="footer-links">
<a href="isbelmun.github.io">Home</a>
</li>
<li class="footer-links">
<a href="#">contact</a>
</li>
</ul>
<div class="logo-adalab">
<a href="http://adalab.es/"><img src="http://adalab.es/wp-content/uploads/2016/08/logo_adalab_80px.png" alt="logo-adalab"></a>
</div>
</div>
</footer>
</body>
</html>