-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnow.html
90 lines (88 loc) · 2.67 KB
/
now.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
<!DOCTYPE html>
<html lang="en">
<!-- Same head as index see index.html for comments -->
<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/style.css"
/>
<script
src="https://kit.fontawesome.com/81317c1b19.js"
crossorigin="anonymous"
integrity="sha384-tCIa9x35rFwAnPYwDCoqImEiB9Ai31jfzeslK4Q53KZAXSFi24Px912eIpefo9Bj"
></script>
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap"
rel="stylesheet"
/>
<!-- Title of page is now dependant on name of page ~> could be made into a var in the future -->
<title>Now | Santiago Chamon</title>
</head>
<body>
<!-- see nav comments in index.html -->
<nav>
<div class="menu-wrap">
<input type="checkbox" class="toggler" />
<div class="hamburger"><div></div></div>
<div class="menu">
<div>
<div>
<ul>
<li><a href="../index.html" class="nav-links">Home</a></li>
<li><a href="now.html" class="nav-links">Now</a></li>
<li><a href="about.html" class="nav-links">About</a></li>
<li><a href="projects.html" class="nav-links">Projects</a></li>
<li><a href="blog.html" class="nav-links">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<main>
<div class="content-title-wrap">
<h1 class="first-name">Santiago</h1>
<h1 class="last-name">Ch mon</h1>
<!-- social icons go underneath Chamon now -->
<div class="content-social-wrap">
<a
href="https://www.linkedin.com/in/santiagochamon/"
target="_blank"
class="linkedin-icon"
><i class="fab fa-linkedin"></i
></a>
<a
href="https://github.com/llausa"
target="_blank"
class="github-icon"
><i class="fab fa-github-square"></i
></a>
</div>
<!-- content wrapper that is styled to go underneath Santiago Chamon -->
<div class="content-text-wrap">
<h2 class="content-title">Now</h2>
<p>Currently in: 🇦🇺</p>
<p>
Right now, I'm going through Coder Academy's
<a
href="https://coderacademy.edu.au/coding-courses/coding-bootcamps/fast-track"
target="_blank"
>Fast Track Bootcamp course</a
>.
</p>
<p>
I am learning 2 web frameworks: Rails and MERN. At the end of this
course, around Feb-Mar 2020, I will be a Full-Stack Developer.
</p>
<p>
I'm also going to be creating some projects so checkout my
<a href="projects.html"> Projects</a> page to see what I'm up to.
</p>
</div>
</div>
</main>
</body>
</html>