-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This code gets repeated for each page ~> could be placed in a header partial of Rails -->
<!-- Init meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="Description" content="Personal Portfolio of Santiago Chamon">
<!-- Importing Style Sheet where bulk of CSS is -->
<!-- removed Integrity tag for style.css so html can be opened locally without issues -->
<link
rel="stylesheet"
href="src/styles/style.css"
/>
<!-- Social Icons imported from Font Awesome ~> a little bit slow to load, could be bc of SRI? -->
<script
src="https://kit.fontawesome.com/81317c1b19.js"
crossorigin="anonymous"
integrity="sha384-tCIa9x35rFwAnPYwDCoqImEiB9Ai31jfzeslK4Q53KZAXSFi24Px912eIpefo9Bj"
></script>
<!-- Importing Lato font from Google Fonts ~> Google Fonts does not support SRI -->
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap"
rel="stylesheet"
/>
<title>Santiago Chamon</title>
</head>
<body>
<!-- Nav hamburger of menu across the site -->
<nav>
<div class="menu-wrap">
<!-- utilizing the checkbox input style so it can be pure css -->
<input type="checkbox" class="toggler" />
<!-- Hamburger icon over the checkbox input -->
<div class="hamburger"><div></div></div>
<div class="menu">
<div>
<div>
<ul>
<!-- links to different pages -->
<li><a href="index.html" class="nav-links">Home</a></li>
<li><a href="./src/now.html" class="nav-links">Now</a></li>
<li><a href="./src/about.html" class="nav-links">About</a></li>
<li>
<a href="./src/projects.html" class="nav-links">Projects</a>
</li>
<li><a href="./src/blog.html" class="nav-links">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<!-- Main content of site inside this main tag -->
<main>
<!-- title-wrap contains everything incl the big name and content underneath it -->
<div class="title-wrap">
<h1 class="first-name">Santiago</h1>
<!-- is what allows Ch mon the extra blank space between h and m -->
<h1 class="last-name">Ch mon</h1>
<!-- content underneath title located here -->
<div class="content-text-wrap">
<p>is a Software Developer in Brisbane, Australia</p>
<!-- social icons for index page -->
<div class="content-social-wrap">
<a
href="https://www.linkedin.com/in/santiagochamon/"
target="_blank"
><i class="fab fa-linkedin" title="Linkedin Social Icon"></i
></a>
<a href="https://github.com/llausa" target="_blank"
><i class="fab fa-github-square" title="Github Social Icon"></i
></a>
</div>
</div>
</div>
</main>
</body>
</html>