-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
93 lines (84 loc) · 3.56 KB
/
contact.html
File metadata and controls
93 lines (84 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kapcode - Contact Us</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" xintegrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="header-container">
<a href="index.html" class="logo">Kapcode.</a>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<div class="container">
<section id="contact" class="contact-section">
<h2>Get In Touch</h2>
<p>Ready to simplify your computing? Contact us for custom software or template inquiries!</p>
<iframe src="https://forms.gle/oLZ7CaQBBnPGsrAj6"
title="Kapcode Contact Form"
width="100%"
height="800"
frameborder="0"
marginheight="0"
marginwidth="0">
Loading…
</iframe>
</section>
</div>
</main>
<footer>
<div class="container">
<ul class="social-icons">
<li>
<a href="https://www.facebook.com/profile.php?id=61581267264151" target="_blank" aria-label="Facebook Profile">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https://x.com/KAPCODE_Apps" target="_blank" aria-label="X (Twitter) Profile">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/Kapcode/" target="_blank" aria-label="GitHub Profile">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://patreon.com/kapcode" target="_blank" aria-label="Patreon Page">
<i class="fab fa-patreon"></i>
</a>
</li>
<li>
<a href="https://www.tiktok.com/@kapcode" target="_blank" aria-label="TikTok Profile">
<i class="fab fa-tiktok"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/@prospert0" target="_blank" aria-label="YouTube Channel">
<i class="fab fa-youtube"></i>
</a>
</li>
<li>
<a href="https://discord.gg/8y85y5HKbk" target="_blank" aria-label="Discord Profile">
<i class="fab fa-discord"></i>
</a>
</li>
</ul>
<p>© 2025 Kapcode. All rights reserved.</p>
</div>
</footer>
</body>
</html>