-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (124 loc) · 4.83 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
<!doctype html>
<html>
<head>
<title>My Portfolio site</title>
<meta name="description" content="Udacity Full Stack Nanodegree course project 2" />
<meta name="author" content="Junior Báez">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta charset="utf-8">
<link rel="stylesheet" href="assets/css/specific_style.css" />
</head>
<body>
<div class="container">
<header class="row header">
<div class="col-xs-12 col-md-3 header-logo-container">
<img class="header-logo-img" src="assets/img/jbaez-small.jpg">
</div>
<div class="col-xs-12 col-md-9 header-text-container">
<h1 class="header-text-title">
Junior Báez
</h1>
<p class="header-text-desc">
Front-end Ninja
</p>
</div>
</header>
<div class="row">
<div class="col-xs-12">
<hr>
</div>
</div>
<section class="row content">
<section class="row content-promo">
<div class="col-xs-12 content-promo-container">
<img class="content-promo-img" src="assets/img/jr-small.jpg"
srcset="assets/img/jr-large.jpg 1024w, assets/img/jr-medium.jpg 640w, assets/img/jr-small.jpg 320w"
alt="A rad wolf">
</div>
</section>
<div class="row">
<div class="col-xs-12">
<h2 class="text-muted">
Featured Work
</h2>
</div>
</div>
<section class="row content-featured">
<article class="col-xs-12 col-md-6 col-lg-4 content-featured-container">
<img class="content-featured-img"
src="assets/img/white-placeholder-1-small.jpg"
srcset="assets/img/white-placeholder-1-large.jpg 1024w, assets/img/white-placeholder-1-medium.jpg 640w, assets/img/white-placeholder-1-small.jpg 320w"
sizes="(min-width: 1024px) 33.3vw, (min-width: 768px) 50vw, 100vw"
alt="A rad wolf">
<div class="content-featured-text">
<h3 class="content-featured-title">
Nanodegree Resume
</h3>
<div class="content-featured-teaser">
<p>
Udacity Project for Javascrip basic course.
<a href="http://jrbaez01.github.io/frontend-nanodegree-resume/" target="_blank">
http://jrbaez01.github.io/frontend-nanodegree-resume/
</a>
</p>
</div>
</div>
</article>
<article class="col-xs-12 col-md-6 col-lg-4 content-featured-container">
<img class="content-featured-img"
src="assets/img/white-placeholder-2-small.jpg"
srcset="assets/img/white-placeholder-2-large.jpg 1024w, assets/img/white-placeholder-2-medium.jpg 640w, assets/img/white-placeholder-2-small.jpg 320w"
sizes="(min-width: 1024px) 33.3vw, (min-width: 768px) 50vw, 100vw"
alt="A rad wolf">
<div class="content-featured-text">
<h3 class="content-featured-title">
Fresh Tomatoes
</h3>
<div class="content-featured-teaser">
<p>
Source code for a Movie Trailer website with Python.
<a href="https://github.com/jrbaez01/fsnd-fresh-tomatoes" target="_blank">
Github: fsnd-fresh-tomatoes
</a>
</p>
</div>
</div>
</article>
<article class="col-xs-12 col-md-6 col-lg-4 content-featured-container">
<img class="content-featured-img"
src="assets/img/white-placeholder-3-small.jpg"
srcset="assets/img/white-placeholder-3-large.jpg 1024w, assets/img/white-placeholder-3-medium.jpg 640w, assets/img/white-placeholder-3-small.jpg 320w"
sizes="(min-width: 1024px) 33.3vw, (min-width: 768px) 50vw, 100vw"
alt="A rad wolf">
<div class="content-featured-text">
<h3 class="content-featured-title">
XvO game
</h3>
<div class="content-featured-teaser">
<p>
A simple Tic Tac Toe game with vanilla JS, HTML and CSS.
Done while in the bathroom!
<a href="https://jrbaez01.github.io/XvO/" target="_blank">
https://jrbaez01.github.io/XvO/
</a>
</p>
</div>
</div>
</article>
</section>
</section>
<div class="row">
<div class="col-xs-12">
<hr>
</div>
</div>
<footer class="row footer">
<div class="col-xs-12">
<span class="footer-author">
By Junior
</span>
</div>
</footer>
</div>
</body>
</html>