-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (96 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nilo Alvarado Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
div.text-center {
width: 100%;
height: 100%;
background-color: #236AB9;
animation-name: example;
animation-duration: 20s;
animation-iteration-count: infinite;
}
@keyframes example {
100% {
background-color: #FC7307;
}
}
.fakeimg {
height: 200px;
background: #aaa;
}
</style>
</head>
<body>
<div class="jumbotron text-center" style="margin-bottom:0">
<h1>Nilo Alvarado</h1>
<h2>Front-End Engineer</h2>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">Projects</a>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://github.com/nfa1/JavaScript-CRUD-Project">JavaScript</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/nfa1/DAGEcoin-Blockchain">Python</a>
</li>
</ul>
</div>
</nav>
<div class="container" style="margin-top:30px">
<div class="row">
<div class="col-sm-4">
<h2>About Me</h2>
<div class="image1">
<img src="image1.jpg" style="height: 100%; width: 100%; object-fit: contain" alt="image1">
</div>
<p><strong>I am front-end engineer focused on writing clean code while producing attractive and user-friendly applications.</strong></p>
<h3>Contact Me</h3>
<button type="button" class="btn btn-primary"><a href="https://github.com/nfa1" style="color:inherit">GitHub</a></button>
<button type="button" class="btn btn-primary"><a href="mailto:%[email protected]" style="color:inherit">Email</a></button>
</div>
<div class="col-sm-8">
<h2>Skills</h2>
<div>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Bootstrap</li>
<li>jQuery</li>
<li>Python</li>
<li>PostgreSQL</li>
<li>Git</li>
</ul>
</div>
<h2>JavaScript: CRUD</h2>
<div class="image2">
<a href="https://github.com/nfa1/JavaScript-CRUD-Project">
<img src="image2.jpg" style="height: 50%; width: 50%; object-fit: contain" alt="image2">
</a>
</div>
<p><strong>A demo form for CRUD (Create, Read, Update, Delete) operations.</strong></p><br>
<h2>Python: Blockchain</h2>
<div class="image3">
<a href="https://github.com/nfa1/DAGEcoin-Blockchain">
<img src="image3.jpg" style="height: 50%; width: 50%; object-fit: contain" alt="image3">
</a>
</div>
<p><strong>A demo blockchain called DAGEcoin in Python.</strong></p>
</div>
</div>
</div>
<div class="jumbotron text-center" style="margin-bottom:0">
<p>© 2022 Nilo Alvarado</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>