-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (104 loc) · 5 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="author" content="Ian Curtis">
<meta name="description" content="The official website for Ian Curtis.">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="styles/main.css">
<script src="https://kit.fontawesome.com/a4e75b7167.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<title>Ian Curtis - Home</title>
</head>
<body>
<header class="header">
<a class="skip-link" href='#main'>Skip to main content</a>
<h1><a target="_blank" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Ian Curtis</a></h1>
<nav class="navbar">
<ul class='nav-menu nav-menu-mobile'>
<li class="active-page nav-item">Home</li>
<li><a class="nav-item" href="about">About</a></li>
<li><a class="nav-item" href='cv'><abbr title="Curriculum Vitae">CV</abbr></a></li>
<li><a class="nav-item" href='portfolio'>Portfolio</a></li>
<li><a class="nav-item" href="http://www.github.com/ian-curtis">GitHub</a></li>
<li><a class="nav-item" href="/music/">Music</a></li>
</ul>
</nav>
<a title='Navigation Menu' id='nav-icons' class="icon">
<i class="burger fa-solid fa-bars fa-2xl"></i>
<i class="close fa-solid fa-xmark fa-2xl"></i>
</a>
<script src="scripts/main.js"></script>
</header>
<main class="main-home" id="main">
<div class="hero-image-home">
<div class="hero-text">
<h1>Ian A. Curtis</h1>
<h2 class="tagline">Aspiring Data Scientist</h2>
</div>
</div>
<div class="home-wrap">
<div id="bitmoji" class="home-pic">
<img src="/images/bitmoji_dog.png" alt="bitmoji (cartoon-like) photo of a young man with brown hair and a tan-colored fluffy dog, both wearing sunglasses">
</div>
<div class="home-content">
<h1>Hey There! ✌</h1>
<p class="home-welcome">
Welcome to my site.
</p>
<p>
Me, being Ian Curtis, of course. I am currently a student at Grand Valley State University, but you can consider me an aspiring data scientist. If that doesn't work for you, try music enthusiast, fun-sock collector, or semi-professional dog walker.
</p>
<p>
Speaking of dogs, if you're here to see more dog pictures, see the <a href="/music/subliminal-affection/sadie-rose.html">Sadie Rose</a> page. If not, well, feel free to hop around. Headings are provided at the top but I'll put some links down here, too.
</p>
<p>
Where you go next will depend on what you are interested in the most. Need a little bit about me? Check out the <a href="/about/">about page</a>. Maybe you want to jump right into more detailed information on my work and projects. If so, then the <a href="/cv/"><abbr title="curriculum vitae">CV</abbr> page</a> is for you. Maybe you don't want any of that and want to explore some of the music I've created and released. If that's the case, take a trip to the <a href="/music/">Music page</a>.
</p>
<p>
Banner photo courtesy of Kendra Stanley-Mills/GVSU University Communications.
</p>
</div>
<div id="real-life" class="home-pic">
<img src="../images/real_dog.jpeg" alt="photo of a young man with brown hair and a tan-colored fluffy dog, both wearing sunglasses">
</div>
</div>
</main>
<footer>
<div class="footer-intro">
<p>
Website designed and created by Ian Curtis <br>
Copyright © 2023-2024 Ian Curtis
</p>
</div>
<div class="icons">
<a href="https://www.linkedin.com/in/ianacurtis/" class="fa fa-brands fa-linkedin" title="LinkedIn Profile"></a>
<div class="instagram-wrap">
<a href="https://www.instagram.com/iancurtismusic" class="fa fa-brands fa-instagram" title="Instagram Profile"></a>
</div>
<a href="https://open.spotify.com/artist/6xSxIN1tpzv9jJEOVtw6ir?si=C10KsTkUSAWCTGu7F_EwFg" class="fa fa-brands fa-spotify" title="Spotify Profile"></a>
<a href="https://music.apple.com/us/artist/ian-curtis/1437810949" class="fa apple-music" title="Apple Music Profile">
<img src="images/standard.svg" alt="apple music logo">
</a>
<!-- <a href="#" class="fa fa-brands fa-deezer"></a> -->
<a href="https://www.youtube.com/channel/UC5XTUiwPGTK_vkJouqalEsw" class="fa fa-brands fa-youtube" title="YouTube Profile"></a>
</div>
<div class="footer-links">
<p>
<ul>
<li>
<a href="accessibility/">Accessibility Statement</a>
</li>
<li>
<a href="/sitemap.xml">Sitemap</a>
</li>
</ul>
</p>
</div>
</footer>
</body>
</html>