-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (105 loc) · 4.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Tony Luisi</title>
<meta name="description" content="Tony's github website">
<meta name="author" content="Tony Luisi">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<link rel="stylesheet" href="styles/main.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Scripts -->
<a href="http://jquery.com">jQuery</a>
<script src="./scripts/jquery.js"></script>
<script>
$(document).ready(function() {
$("a").click(function (event) {
alert("Thanks for visiting!");
// body...
})
})
</script>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<section class="navbar">
<div class="container">
<ul class="navbar-list">
<li class="navbar-item">
<a class="navbar-link" href="#">HOME</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="./blog/index.html">Blog</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="./projects/index.html">Projects</a>
</li>
</ul>
</div>
</section>
<section class="header">
<div class="container">
<h1 style="text-align: center"><strong>Tēnā Koe</strong></h1>
<img src="./images/whitelogo.png" alt="">
<h6 class=title style="text-align: center"><em>Your journey starts here! | Anei te tīmatanga o tō hīkoi!</em></h6>
</div>
</section>
<section class="main">
<div class="container" id="panorama">
<div class="twelve.columns">
<img src="images/Optimized-panorama 3.png">
</div>
</div>
<div class="container">
<div class="one-half column" id="about">
<h3>ABOUT ME</h3>
<img src="images/face1.jpg">
<p></p>
<p>Kia Ora, Kō Tony tōku ingoa.</p>
<p>I am currently studying with the Enspiral Dev Academy, learning to become a Web Developer. Before this I spent 8 years at an accounting firm (PwC) doing IT / Systems Auditing. While this may seem like a drastic change in career direction, application development is something I have been passionate about for many years. This site documents my journey through the academy, as well as anything else I deem relevant (or irrelevant).</p>
</div>
<div class="one-half column" id="blog">
<h3>RECENT BLOG POSTS</h3>
<ul>
<li><a href="./blog/c1-reflection-blog.html">Reflections</a></li>
<li><a href="./blog/c1-time-and-habits-blog.html">Time and Habits</a></li>
<li><a href="./blog/c2-emotional-intelligence.html">Emotional Intelligence</a></li>
<li><a href="./blog/t2-html-css-dom-p1.html">HTML CSS AND DOM (Part 1)</a></li>
<li><a href="./blog/t2-html-css-dom-p2.html">HTML CSS AND DOM (Part 2)</a></li>
<li><a href="./blog/t3-design-to-web-blog.html">Design to Web Blog</a></li>
<li><a href="./blog/c3-meditation-process.html">The Meditation Process</a></li>
</ul>
</div>
</div>
</section>
<section class="footer">
<div class="container">
<div class="one-third column">
<a class="contact-link" href="mailto:[email protected]">MAIL</a>
</div>
<div class="one-third column">
<a class="contact-link" href="https://github.com/tony-luisi">Github</a>
</div>
<div class="one-third column">
<a class="contact-link" href="https://nz.linkedin.com/in/tony-luisi-8523473a">LinkedIn</a>
</div>
</div>
</section>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>