-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
120 lines (120 loc) · 4.5 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
<!DOCTYPE html>
<html lang="en">
<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>Mi Portafolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./index.css" />
<script
src="https://cdn.jsdelivr.net/npm/js-confetti@latest/dist/js-confetti.browser.js"
defer
></script>
<script src="./index.js" defer></script>
</head>
<body>
<nav class="nav flex content-end">
<ul class="flex">
<li>
<a href="#">Works</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
<main class="m-auto">
<section class="profile">
<div
class="inner-profile m-max-width flex items-center content-center m-auto"
>
<div class="profile-text">
<h1 class="title text-focus-in">Hi, I'm Linder,</h1>
<h1 class="title">Software Developer</h1>
<p class="about">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Natus
iure, tempore numquam porro labore reprehenderit, explicabo nisi
provident soluta exercitationem, at quibusdam consequuntur
reiciendis. Laboriosam ipsam doloremque aliquam odio eligendi?
</p>
<button class="resume">Download resume</button>
</div>
<div class="section-profile">
<img class="img-profile" src="./images/profile.jpeg" alt="" />
</div>
</div>
<div class="custom-shape-divider-bottom-1677119079">
<svg
data-name="Layer 1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1200 120"
preserveAspectRatio="none"
>
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill"
></path>
</svg>
</div>
</section>
<section class="works">
<div class="m-max-width m-auto pt-30">
<h2>Featured works</h2>
<div class="challenges-container flex items-center">
<div class="challenges flex pt-30">
<div class="card shadow">
<img src="./images/challenges/challenge-1.png" alt="" />
<div class="card-body">
<h3>How did we do?</h3>
<p>Reto de FrontEnd mentor BASIC</p>
<a href="">Ver repositorio</a>
</div>
</div>
<div class="card shadow">
<img src="./images/challenges/challenge-2.png" alt="" />
<div class="card-body">
<h3>Challenge QR</h3>
<p>Reto de FrontEnd mentor BASIC</p>
<a href="">Ver repositorio</a>
</div>
</div>
<div class="card shadow">
<img src="./images/challenges/challenge-3.png" alt="" />
<div class="card-body">
<h3>Github search</h3>
<p>Reto de FrontEnd mentor BASIC</p>
<a href="">Ver repositorio</a>
</div>
</div>
<div class="card shadow">
<img src="./images/challenges/challenge-4.png" alt="" />
<div class="card-body">
<h3>Landing page</h3>
<p>Reto de FrontEnd mentor BASIC</p>
<a href="">Ver repositorio</a>
</div>
</div>
</div>
<div class="challenges-buttons">
<button class="btn-back">
<img width="18" src="./images/back.png" alt="" />
</button>
<button class="btn-next">
<img width="18" src="./images/next.png" alt="" />
</button>
</div>
</div>
</div>
</section>
</main>
</body>
</html>