-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (140 loc) · 5.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mauricio M.</title>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Mauricio M.</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="mailto:[email protected]"
>Email</a
>
</li>
</ul>
</div>
</nav>
<!-- Header Image and Introduction -->
<header class="jumbotron text-center">
<img
src="images/pic.jpg"
class="rounded-circle"
alt="Profile Picture"
style="box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5)"
/>
<h1 id="about" class="display-4">Mauricio Martínez Moná</h1>
<p class="lead">
Passionate technical writer, instructional designer and (very)
amateur piano player, I aim to create delightful learning
experiences with business impact.
</p>
<p class="lead">
This portfolio is (and will always be) under construction 🏗️. If
you see something that acts odd, be forgiving. My web
development skills are not the main attraction.
</p>
</header>
<!-- Grid of Options -->
<div id="projects" class="container">
<div class="row">
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<img
src="images/rigidbody.gif"
class="card-img-top"
alt="Project 1"
/>
<div class="card-body">
<h5 class="card-title">Learning object</h5>
<p class="card-text">
Objective: Introduce and support a live session
about technical topics.
</p>
<p>Format: Video, text.</p>
<a
href="learning-object.html"
class="btn btn-primary"
>View Project</a
>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<img
src="images/vlexkb.png"
class="card-img-top"
alt="Project 2"
/>
<div class="card-body">
<h5 class="card-title">Knowledge base</h5>
<p class="card-text">
Objective: Update the knowledge base with a
user-friendly approach.
</p>
<p>Format: Text, images.</p>
<a
href="knowledge-base.html"
class="btn btn-primary"
>View Project</a
>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<img
src="images/unpoquito.png"
class="card-img-top"
alt="Project 3"
/>
<div class="card-body">
<h5 class="card-title">Edutainment</h5>
<p class="card-text">
Objective: Entertaining learning experience with
authentic material.
</p>
<p>Format: Text.</p>
<a href="edutainment.html" class="btn btn-primary"
>View Project</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>