-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<title>Portafolio</title>
</head>
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="row">
<div id="img" class="col-md-6">
<img class="img-responsive rounded-circle" src="images/animeLogo.jpg" alt="Code Geass Lelouch" />
</div>
<div class="col-md-6 text-right text-uppercase">
<h1 class="title">Cesar Peña</h1>
<p>Front-end Developer Training</p>
</div>
</div>
</div>
</div>
</div>
</header>
<body class="backgrounds">
<div class="container">
<div class="row">
<hr class="line" />
</div>
<div class="row">
<div class="col-md-12">
<img class="img-responsive" width="1170px" src="images/assasination-classroom.png" alt="Nagisa">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Featured Work</h2>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<img class="img-responsive" src="images/naruto-shippuden.jpg" alt="Naruto">
<h3 class="text-uppercase">Naruto Shippuden</h3>
<a href="https://shippuden.tv/">Shippuden.tv</a>
</div>
<div class="col-md-4">
<img class="img-responsive" src="images/one-piece.jpg" alt="Luffy">
<h3 class="text-uppercase">One Piece</h3>
<a href="https://www.crunchyroll.com/one-piece">Crunchyroll.com</a>
</div>
<div class="col-md-4">
<img class="img-responsive" src="images/full-metal-alchemist.jpg" alt="Edward">
<h3 class="text-uppercase">Full Metal Alchemist</h3>
<a href="https://www.crunchyroll.com/fullmetal-alchemist-brotherhood">Crunchyroll.com</a>
</div>
</div>
</div>
</body>
</html>