-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
169 lines (133 loc) · 6.53 KB
/
contact.html
File metadata and controls
169 lines (133 loc) · 6.53 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<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">
</head>
<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="">
<h1 id="contact-me" class="h1-colors text-center d-flex justify-content-center">
<span class="color-p">Contact</span>✨<span class="color-b">Me</span>
</h1>
<!--MAIN CONTENT - SECTION 7.5 - CONTACT-FORM -->
<section id="contact-form-section" class="container my-5 d-flex justify-content-center">
<div class="container contact-form m-5 bg-dark d-flex justify-content-center">
<form class=" m-5 " action="https://formspree.io/f/xrgngdlq" method="POST"
data-success="Thank you for your submission!">
<div class="row ">
<div class="col-md-6 col-sm-12">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="That's ..." required>
</div>
<div class="col-md-6 col-sm-12">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="You! ...">
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<label for="cname">Company Name</label>
<input type="text" id="cname" name="companyname" placeholder="Company ...">
</div>
<div class="col-md-6 col-sm-12">
<label for="email">Your Email</label>
<input type="email" id="email" name="email" placeholder="E-mail ..." required>
</div>
</div>
<label for="message">Your Message</label>
<textarea id="message" name="message" placeholder="Drop me a line, let's Connect! ..."></textarea>
<input class="form-btn btn btn-primary mt-3 ml-1" type="submit" value="Submit">
</form>
</div>
</section>
</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>