-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathindex.html
126 lines (123 loc) · 4.84 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">
<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">
<meta name="description" content="Basic Portfolio" />
<title>Basic a Freefolio template by OSSPH</title>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<nav class="navbar">
<div class="navbar-title">
<h1>Blakely</h1>
</div>
<div class="social-links">
<ul>
<li><a href="#"><img src="./images/facebook.svg" alt="facebook"></a></li>
<li><a href="#"><img src="./images/github.svg" alt="facebook"></a></li>
<li><a href="#"><img src="./images/linkedin.svg" alt="facebook"></a></li>
<li><a href="#"><img src="./images/twitter.svg" alt="facebook"></a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-image">
<img class="images" src="./images/undraw_developer_activity_re_39tg.svg" alt="Profile">
</div>
<div class="hero-info">
<h1>
Hi, I'm <span>Blakely</span>
</h1>
<h2>
Frontend Developer
</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis obcaecati saepe soluta libero a
inventore, repellendus minima laboriosam rem quam deserunt.
</p>
<a href="#" class="button">Contact Me</a>
</div>
</section>
<hr>
<section class="skills">
<div class="skills-card">
<h2>HTML</h2>
<p>Lorem ipsum dolor sit</p>
</div>
<div class="skills-card">
<h2>CSS</h2>
<p>Lorem ipsum dolor sit</p>
</div>
<div class="skills-card">
<h2>Javascript</h2>
<p>Lorem ipsum dolor sit</p>
</div>
<div class="skills-card">
<h2>Sass</h2>
<p>Lorem ipsum dolor sit</p>
</div>
<div class="skills-card">
<h2>Tailwind</h2>
<p>Lorem ipsum dolor sit</p>
</div>
<div class="skills-card">
<h2>Accessibility</h2>
<p>Lorem ipsum dolor sit</p>
</div>
</section>
<hr>
<section class="projects-info">
<h1>Projects</h1>
<div class="projects-cards">
<div class="project-card-info">
<img src="./images/project.png" width="512" alt="Projets" class="card-info">
<h2>Project Title</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<div class="project-card-info">
<img src="./images/project.png" width="512" alt="Projets" class="card-info">
<h2>Project Title</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<div class="project-card-info">
<img src="./images/project.png" width="512" alt="Projets" class="card-info">
<h2>Project Title</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<div class="project-card-info">
<img src="./images/project.png" width="512" alt="Projets" class="card-info">
<h2>Project Title</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
</div>
</section>
<hr>
</main>
</div>
<footer>
<h1>Footer</h1>
</footer>
</body>
</html>