-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (64 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="I create websites and web applications, focused on front-end but with back-end experience, explore my work "
/>
<meta name="keywords" content="front-end, software, back-end, kevin skayro, kevinSkayro, kevin castro, software development" />
<meta name="author" content="Kevin Skayro" />
<meta name="msapplication-TileColor" content="#fffffe" />
<meta name="theme-color" content="#ffffff" />
<link rel="preload" href="/src/css/fonts/acorn/acorn.woff" as="font">
<link rel="stylesheet" href="/src/css/reset.css">
<link rel="stylesheet" href="/src/css/baseStyle.scss">
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<link rel="mask-icon" href="./favicon/safari-pinned-tab.svg" color="#5bbad5" />
<title>Kevin Castro</title>
<style>
/* Inline critical CSS to Prevent content flashing */
.loading-screen {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.progress {
background: rgba(255, 255, 255, 0.1);
justify-content: flex-start;
border-radius: 100px;
align-items: center;
position: relative;
padding: 0 5px;
display: flex;
height: 40px;
width: 500px;
}
</style>
</head>
<body>
<div id="app">
<div class="loading-screen">
<div class="progress">
</div>
</div>
<header class="video-container">
<div class="fullscreen-video-wrap"></div>
<div class="hero-content">
<h1 class="header-text">Hi, I'm Kevin</h1>
<h1 class="header-text">I'm a Front-end Developer</h1>
<h2 class="header-subtext">I build websites and web applications.</h2>
<a data-goto-btn class="explore-btn" href="#projects">
SEE PROJECTS <i class="fas fa-arrow-right" id="btn-arrow"></i>
</a>
</div>
</header>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>