-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.67 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<title>Home - Angel Polanco</title>
</head>
<body>
<header class="site-header">
<nav aria-label="Primary">
<a class="brand" href="/index.html">Angel Polanco</a>
<ul class="nav">
<li><a href="/index.html" aria-current="page">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-text">
<h1>Hey! I'm Angel - Junior Web Developer</h1>
<p class="tagline">
Passionate about turning concept into code; bringing visions to life
on the web
</p>
<blockquote class="quote">
<p>“The harvest truly is plentiful, but the laborers are few."</p>
</blockquote>
<cite>- Jesus Christ of Nazareth</cite>
</div>
<figure class="hero-media">
<img src="/assets/portrait.jpg" alt="Portrait of Angel Polanco" />
<figcaption>Based in NYC | Full-Stack Solutions</figcaption>
</figure>
</section>
</main>
<footer class="site-footer">
<small
>© <span id="year"></span> Angel Polanco. All rights reserved.</small
>
</footer>
<script src="/home.js"></script>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>