-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
111 lines (101 loc) · 4.69 KB
/
services.html
File metadata and controls
111 lines (101 loc) · 4.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kapcode - Our Services</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" integrity="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 class="services-section">
<h2>Explore Our Software Solutions</h2>
<p>We craft practical, powerful software, ranging from productivity macros to foundational 2D game templates.</p>
<div class="services-grid">
<div class="service-card">
<div class="card-image-container">
<i class="fas fa-gamepad card-icon" aria-hidden="true"></i>
</div>
<h3>Game Templates</h3>
<p>Jumpstart your development with 2D game templates.</p>
<a href="https://template.kapcode.us" class="card-button">View Templates</a>
</div>
<div class="service-card">
<div class="card-image-container">
<i class="fas fa-keyboard card-icon" aria-hidden="true"></i>
</div>
<h3>Custom Macro Solutions</h3>
<p>Automate repetitive tasks with OpenMacropad.</p>
<div class="service-button-wrapper">
<a href="https://play.google.com/store/apps/details?id=com.kapcode.open.macropad.kmp" class="card-button">Google Play App</a>
<a href="https://github.com/Kapcode/OpenMacropadKMP" class="card-button">GitHub Repository</a>
</div>
</div>
</div>
</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://www.linkedin.com/in/kyle-prospert-75037195/" target="_blank" aria-label="LinkedIn Profile">
<i class="fab fa-linkedin-in"></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>