-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (79 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<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" />
<meta
name="description"
content=" Overview of myself, design history and projects."
/>
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<link rel="icon" href="/favicon.ico">
<title>Kristof-Pierre Cummings: Portfolio</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Fira+Sans|Raleway"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/document.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/nav.css" />
<link rel="stylesheet" href="styles/projects.css" />
<!-- <link rel="stylesheet" href="styles/contact.css"> -->
<link rel="stylesheet" href="styles/footer.css" />
<link rel="stylesheet" href="styles/about.css" />
</head>
<body class="preload">
<div class="over-panel">
<div class="over-panel-text">
<p class="welcome-over">Welcome</p>
<br />
<p class="instructions">Check out some projects below</p>
<br />
<p class="instructions">:)</p>
</div>
</div>
<div class="button-holder">
<button id="panel-btn" type="button" aria-label="toggle-welcome-message">
<i class="fa fa-3x fa-chevron-down"></i>
</button>
</div>
<nav role="navigation">
<div class="name">
<a href="#" class="homepage-link"
><span><h1 class="first-name">Kristof-Pierre</h1></span>
<span><h1 class="last-name">Cummings</h1></span></a
>
</div>
<!-- <button class="portfolio-button">Portfolio</button> -->
<button class="menu-button">MENU</button>
<ul class="nav-links">
<li class="nav-item" id="my-resume">
<a href="https://resume.creddle.io/resume/e5itbn56xtr" target="_blank">My Resume</a>
</li>
<li class="nav-item" id="about-me"><a href="#">About Me</a></li>
<li class="nav-item">
<a href="https://www.linkedin.com/in/kristof-pierre-cummings" target="_blank">LinkedIn</a
>
</li>
<li class="nav-item">
<a href="https://github.com/jamster10/" target="_blank">Github</a>
</li>
</ul>
</nav>
<main role="main">
<section class="left-top"></section>
<section class="right-bottom"></section>
</main>
<footer class="portfolio-container"></footer>
<script src="scripts/portfolioItems.js"></script>
<script src="scripts/Views.js"></script>
<script src="scripts/State.js"></script>
<script src="scripts/SessionControls.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>