-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (108 loc) · 3.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<body>
<nav id="navbar" class="nav">
<ul class="nav-list">
<li>
<a href="#welcome-section">About</a>
</li>
<li>
<a href="#projects">Work</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<!-- ---------------- -->
<section id="welcome-section" class="welcome-section">
<h1>Sergio Ruiz</h1>
<p>Desarrollador web</p>
</section>
<!-- ---------------- -->
<section id="projects" class="projects-section">
<h2 class="projects-section-header">Algunos de mis proyectos</h2>
<div class="projects-grid">
<a href="https://codepen.io/pyramsd/full/BameEyN" target="_blank" class="project project-tile">
<img
title="imagenes"
class="project-image"
src="https://images.pexels.com/photos/4138976/pexels-photo-4138976.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="project"/>
<p class="project-title">
<span class="code"><</span>
Tribute Page
<span class="code">/></span>
</p>
</a>
<a
href="https://codepen.io/pyramsd/full/podXwwv"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://images.pexels.com/photos/1820770/pexels-photo-1820770.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="project"
/>
<p class="project-title">
<span class="code"><</span>
Survey Form
<span class="code">/></span>
</p>
</a>
<a
href="https://codepen.io/pyramsd/full/gOXNjZE"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimg2.freepng.es%2F20180405%2Fqjw%2Fkisspng-technical-documentation-computer-icons-technology-contract-5ac5cb77deda39.0165562415229121199128.jpg&f=1&nofb=1"
alt="project"
/>
<p class="project-title">
<span class="code"><</span>
Technicla Documentation Page
<span class="code">/></span>
</p>
</a>
</div>
<a href="https://codepen.io/pyramsd/" class="btn btn-show-all" target="_blank">Show all<i class="fas fa-chevron-right"></i></a>
</section>
<section id="contact" class="contact-section">
<div class="contact-section-header">
<h2>Contacto</h2>
</div>
<div class="contact-links">
<a
id="profile-link"
href="https://github.com/pyRamsd"
target="_blank"
class="btn contact-details"
><i class="fab fa-github"></i> GitHub</a
>
<a href="https://www.linkedin.com/in/sergio-ruiz-59b1ab233/" class="btn contact-details" target="_blank"
><i class="fas fa-at"></i> Linkedin</a
>
<a href="https://www.instagram.com/_sergio_ruiz_21_/" class="btn contact-details" target="_blank"
><i class="fas fa-mobile-alt"></i> Instagram</a
>
</div>
</section>
<!-- ----------------- -->
<footer>
<p>
Modelo básico de una página de portafolio personal.
</p>
<p>
© Creado por Sergio Ruiz
</p>
</footer>
</body>
</html>