-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskills.html
174 lines (174 loc) · 5.78 KB
/
skills.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Portifolio - Milestone 1</title>
<!-- Bootstrap CDN - Latest Stable Version Bootstrap 5.0.1 -->
<link
href="assets/css/bootstrap/bootstrap.min.css"
rel="stylesheet"
type="text/css"
/>
<!-- Font-awesome CDN - Stable Version Font-awesome 4.7.0 minified file -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css"
/>
<!-- Custom stylesheets -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Header show the name and main menu -->
<header class="fixed-top d-flex flex-wrap justify-content-center">
<div class="d-flex align-items-center mb-md-0 me-md-auto ps-4">
<h1 class="m-0 title">Leandro.</h1>
</div>
<ul
id="menu"
class="
nav
col-12 col-md-auto
me-4
align-items-center
justify-content-center
"
>
<li class="menu-item">
<a href="index.html"> About </a>
</li>
<li class="menu-item">
<a href="projects.html"> Projects </a>
</li>
<li class="menu-item active">
<a href="#"> Skills </a>
</li>
<li class="menu-item">
<a href="contact.html"> Contact </a>
</li>
</ul>
</header>
<!-- container with section heading Skills -->
<section class="container-fluid" id="skills">
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-6">
<h2 class="section-heading">Skills</h2>
</div>
<div class="col-lg-3"></div>
</div>
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-6">
<ul class="skills">
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="js">JavaScript</li>
<li class="ng">Django</li>
<li class="Bst">Bootstrap</li>
<li class="Pyt" title="80%">Python</li>
</ul>
</div>
<div class="col-lg-3"></div>
</div>
</section>
<!--footer to show social media action buttons and download cv -->
<footer class="container-fluid">
<div id="footer-details" class="row">
<div class="col-lg-1"></div>
<div class="col-lg-5">
<h5>Social</h5>
<ul class="list-inline social-links">
<li class="list-inline-item">
<a
target="Facebook"
href="https://www.facebook.com/leandroarj"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a
target="Twitter"
href="https://www.twitter.com/Landro63866835"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-inline-item">
<a
target="LinkedIn"
href="https://www.linkedin.com/in/leandroarj"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-linkedin" aria-hidden="true"></i>
<span class="sr-only">LinkedIn</span>
</a>
</li>
<li class="list-inline-item">
<a
target="Pinterest"
href="https://www.pinterest.ie/leandroarj"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-pinterest" aria-hidden="true"></i>
<span class="sr-only">Pinterest</span>
</a>
</li>
<li class="list-inline-item">
<a
target="Instagram"
href="https://www.instagram.com"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li class="list-inline-item">
<a
target="YouTube"
href="https://www.YouTube.com"
rel="noopener"
rel="noreferrer"
>
<i class="fa fa-youtube" aria-hidden="true"></i>
<span class="sr-only">YouTube</span>
</a>
</li>
</ul>
</div>
<!-- footer container to show social media action buttons and download cv -->
<div class="col-lg-5">
<h5>Download</h5>
<p class="inline-block">
Need a printable version of my CV? Download it here.
<a
href="assets/documents/cv_Leandro_De_Araujo_Junior_Developer_en_2021.pdf"
target="_blank"
class="cv-pdf"
>
<i class="fa fa-download" aria-hidden="true"></i>
<span class="sr-only">Download link.</span>
</a>
</p>
</div>
</div>
<div class="col-lg-1"></div>
</footer>
<!-- Bootstrap v5.0.0-beta3 local script library minified file -->
<script src="assets/js/bootstrap/bootstrap.bundle.min.js"></script>
</body>
</html>