-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
148 lines (129 loc) · 4.69 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Allan - Backend Programmer Resume</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #333;
color: #fff;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 0 20px;
}
h1,
h2,
h3 {
color: #90caf9;
margin-top: 30px;
}
h2 {
border-bottom: 2px solid #90caf9;
padding-bottom: 5px;
}
h3 {
margin-top: 20px;
}
.badge {
background-color: #90caf9;
}
.list-group-item {
background-color: #424242;
border-color: #424242;
border-radius: 20px;
color: #fff;
}
.list-group-item:hover {
background-color: #90caf9;
color: #fff;
}
.card {
background-color: #424242;
border: none;
border-radius: 20px;
margin-bottom: 20px;
}
.card-title {
color: #90caf9;
}
.card-text {
color: #ccc;
}
.badge-dark {
margin-right: 5px;
}
</style>
</head>
<body>
<div class="container">
<header class="text-center">
<h1 class="mb-4">Allan</h1>
<h3 class="mb-4">Backend Programmer</h3>
</header>
<section>
<h2>About Me</h2>
<p>Backend programmer with a passion for crafting efficient and scalable web solutions. Proficient in PHP,
Python, and JavaScript, with expertise in modern web development technologies including HTML, CSS,
Bootstrap, and Firebase. Skilled in database management with MySQL and Redis. Currently exploring the
realms of React Native and React JS to build engaging mobile and web applications.</p>
</section>
<section>
<h2>Education</h2>
<p>Senai - Programming Logic</p>
<p>Senai - Information Technology</p>
<p>Coursera - HTML, CSS, and JavaScript</p>
<p>Coursera - JavaScript - jQuery and JSON</p>
</section>
<section>
<h2>Skills</h2>
<ul class="list-group">
<li class="list-group-item">PHP</li>
<li class="list-group-item">Python</li>
<li class="list-group-item">JavaScript</li>
<li class="list-group-item">HTML</li>
<li class="list-group-item">CSS</li>
<li class="list-group-item">Bootstrap</li>
<li class="list-group-item">Firebase</li>
<li class="list-group-item">MySQL</li>
<li class="list-group-item">Redis</li>
<li class="list-group-item">React Native (in progress)</li>
<li class="list-group-item">React JS (in progress)</li>
</ul>
</section>
<section>
<h2>Projects</h2>
<div class="card">
<div class="card-body">
<h5 class="card-title">Chat</h5>
<p class="card-text">A chat application built with PHP and JavaScript.</p>
<a href="https://github.com/allanlealluz/Chat" class="badge badge-dark">PHP</a>
<a href="https://github.com/allanlealluz/Chat" class="badge badge-dark">JavaScript</a>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Sombra of Condor</h5>
<p class="card-text">A project built with Firebase, PHP, and Ratchet.</p>
<a href="https://github.com/allanlealluz/Shadow_OF_Condor" class="badge badge-dark">Firebase</a>
<a href="https://github.com/allanlealluz/Shadow_OF_Condor" class="badge badge-dark">PHP</a>
<a href="https://github.com/allanlealluz/Shadow_OF_Condor" class="badge badge-dark">Ratchet</a>
</div>
</div>
</section>
<section>
<h2>Certifications</h2>
<p>Senai - Programming Logic</p>
<p>Senai - Information Technology</p>
<p>Coursera - HTML, CSS, and JavaScript</p>
<p>Coursera - JavaScript - jQuery and JSON</p>
</section>
</div>
</body>
</html>