-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaceholder.html
More file actions
133 lines (97 loc) · 4.32 KB
/
placeholder.html
File metadata and controls
133 lines (97 loc) · 4.32 KB
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<meta charset="UTF-8">
<meta name="description" content="Code Crafting">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="CKCarr">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="CKCarr.dev">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<title>CKCarr.dev</title>
<!--Font Awesome Icons-->
<script src="https://kit.fontawesome.com/6c6d5d6d3e.js" crossorigin="anonymous"></script>
<!--DEVICON icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css">
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<!--JQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<!--BootStrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!--Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Normalize CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.min.css">
<!--STYLES-->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/navbar.css">
<body class="text-light">
<!--HEADER - NAVBAR LOGO-->
<header class="header fixed-top">
<nav class="navbar fixed-top">
<a href="#" class="nav-logo">
<img id="logo" class="img img-fluid logo-img animate__animated animate__heartBeat animae__infinite"
src="images/ck-logo.png" alt="CKCarr.dev Logo">
</a>
<ul class="nav-menu">
<li class="nav-item mx-auto">
<a class="nav-link home-link" href="index.html">Home</a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link about-link" href="about.html">About Me</a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link project-link" href="projects.html">Projects</a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link resume-link" href="CKResume.pdf" target="_blank">Resume</a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link contact-link" href="contact.html">Contact Me</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div id="countdown" class="container">
<div id="countdown-container">
<h3 class="cd-header">Countdown to
Graduation
</h3>
</div>
</div>
</header>
<!--MAIN CONTENT-->
<main id="">
</main>
<!--FOOTER - SECTION 8 -->
<footer class="footer container-fluid ">
<div class="footer-content d-flex justify-content-around row">
<aside class="footer-icons text-center mt-4 ">
<a href="https://github.com/CKCarr">
<i class="bi bi-github"></i>
</a>
<a href="https://www.linkedin.com/in/crystal-carrillo/" class="">
<i class="bi bi-linkedin"></i>
</a>
</aside>
<address class="d-block text-center mt-4 ">
<p>Crystal Carrillo <br>Claremore, OK<br> (405)-456-9062</p>
</address>
</div>
<div class="copy">
<p class="text-center mb-sm-0 mt-">Copyright © 2024 CKCarr.dev <br> All Rights Reserved.</p>
</div>
</footer>
<!--scripts-->
<script src="scripts/countdown.js"></script>
<script src="scripts/form-submission.js"></script>
<script src="scripts/menu-toggle.js"></script>
</body>
</html>