-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (144 loc) · 6.92 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<!-- Metas -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Links -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet" />
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/style.css" media="all" />
<!-- Title -->
<title>::: Eduardo Bessa // Portfolio :::</title>
</head>
<body>
<div id="app">
<header class="header">
<nav class="navbar navbar-expand-lg navbar-transparent fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">EB</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0 ms-auto">
<li class="nav-item">
<a class="nav-link active" href="#"><span>01.</span> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><span>02.</span> About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><span>03.</span> Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><span>04.</span> Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><span>05.</span> Contact</a>
</li>
<li class="nav-item">
<a class="nav-link nav-button" href="#">Resume</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Home -->
<section class="page" id="home">
<div class="container">
<div class="row">
<div class="col-md-10 offset-1 pt-5 mt-5">
<div class="page-content">
<div class="page-title">
<h5 class="text-light-primary">Hi, my name is</h5>
<h1>Eduardo Bessa</h1>
<h2>I build your ideas and your dreams.</h2>
</div>
<div class="page-container">
<p>
I’m a full-stack web engineer specializing in building (and occasionally designing) exceptional digital experiences. Currently,
I’m focused on building accessible, human-centered products at <a href="#">Upstatement</a>.
</p>
<button class="btn btn-home mt-5">More about me</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Home -->
<!-- About -->
<section class="page" id="about">
<div class="container">
<div class="row">
<div class="col-md-10 offset-1">
<div class="page-content">
<div class="page-title">
<h5 class="text-light-primary">About me</h5>
<h1>Who am I?</h1>
</div>
<div class="page-container mt-5">
<p>
Since beginning my journey as a full-stack developer nearly 4 years ago.
I'm working remote to enterprise projects, and I'm working on others projects as freelancer.
</p>
<p>
I'm a self-taught developer, and I'm always looking for new challenges to learn and grow,
and I'm always looking for new projects to work with.
</p>
<p>
My experience is in the field of web development with PHP, Laravel, JavaScript, NodeJS, Python, HTML, CSS, Wordpress, and more.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About -->
<!-- Aside -->
<aside class="aside">
<section class="social-networks">
<a href="#" class="social-network-item">
<i class="ri-github-line"></i>
</a>
<a href="#" class="social-network-item">
<i class="ri-facebook-line"></i>
</a>
<a href="#" class="social-network-item">
<i class="ri-linkedin-line"></i>
</a>
<a href="#" class="social-network-item">
<i class="ri-twitter-line"></i>
</a>
<a href="#" class="social-network-item">
<i class="ri-codepen-line"></i>
</a>
<div class="separator"></div>
</section>
</aside>
<!-- Aside -->
</div>
<div class="bg">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%">
<defs>
<pattern id="hexagons" width="50" height="43.4"
patternUnits="userSpaceOnUse"
patternTransform="scale(2) translate(2) rotate(45)">
<polygon
points="24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2"
id="hex" />
<use xlink:href="#hex" x="25" />
<use xlink:href="#hex" x="-25" />
<use xlink:href="#hex" x="12.5" y="-21.7" />
<use xlink:href="#hex" x="-12.5" y="-21.7" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#hexagons)" />
</svg>
</div>
</body>
</html>