-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Javi's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- icon credit: pixabay.com, Creative Commons CC0 -->
<link rel="shortcut icon" href="assets/images/notebook-favicon_32.png">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans" rel="stylesheet">
<link rel="stylesheet" media="screen" href="assets/css/style.css">
<script src="assets/js/main.js"></script>
</head>
<body>
<header class="header">
<div class="logo">
<img src="assets/images/Me.png" alt="Javier Carrion" class="logo-image responsive-image">
</div>
<div class="header-name">
<h1 class="name text-head">Javier Carrion</h1>
<p class="title text">Front-End Developer</p>
</div>
</header>
<!-- TODO: add nav and more web pages -->
<main class="content">
<!-- photo credit: pixabay.com, Creative Commons CC0 -->
<img srcset="assets/images/laptop-3190194_640.jpg 640w, assets/images/laptop-3190194_1280.jpg 1280w, assets/images/laptop-3190194_1920.jpg 1920w"
sizes="100vw" src="assets/images/laptop-3190194_640.jpg" alt="Laptop" class="hero responsive-image">
<section class="featured">
<h2 class="content-header text-head2">Projects</h2>
<div class="featured-items">
<div class="item">
<img src="assets/images/HTMLFlexboxCard.jpg" alt="Featured Project - HTML CSS Flexbox Card" class="featured-image responsive-image">
<h3 class="featured-title text">Minimalist Flexbox Card</h3>
<p class="featured-description">CSS Flexbox and Google Design Material
</p>
<p>
<a href="https://github.com/JavaVista/Flexbox-Card" class="link">https://github.com/JavaVista/Flexbox-Card</a>
</p>
</div>
<div class="item">
<img src="assets/images/seats.jpg" alt="Featured Project Two - Movie Website" class="featured-image responsive-image">
<h3 class="featured-title text">Create a Movie Website</h3>
<p class="featured-description">Python/HTML website with images and trailers
</p>
<p>
<a href="https://github.com/JavaVista/Create-a-Movie-Website" class="link">https://github.com/JavaVista/Create-a-Movie-Website</a>
</p>
</div>
<div class="item">
<img src="assets/images/loading.png" alt="Featured Project - Loading Animation" class="featured-image responsive-image">
<h3 class="featured-title text">Loading Animation</h3>
<p class="featured-description">Loading animation using pure CSS
</p>
<p>
<a href="https://github.com/JavaVista/Loading-Animation" class="link">https://github.com/JavaVista/Loading-Animation</a>
</p>
</div>
</div>
</section>
</main>
<footer>
<p>copyright © 2018 Javier Carrion
<br>All webpages appearing in this work are for demonstration purposes only. Any resemblance to real websites, living or dead, is purely coincidental.
</p>
</footer>
</html>