This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sparky</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="/">
<img src="logo.png" alt="Sparky logo">
</a>
</div>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/products">Products</a>
</li>
<li>
<a href="/about">About</a>
</li>
</ul>
<ul class="social">
<li class="github">
<a href="https://github.com/sparky-game">
<img src="github.svg" alt="GitHub logo">
</a>
</li>
<li class="linkedin">
<a href="https://linkedin.com/company/sparky-game">
<img src="linkedin.svg" alt="LinkedIn logo">
</a>
</li>
<li class="mastodon">
<a href="https://mastodon.social/@sparkygame">
<img src="mastodon.svg" alt="Mastodon logo">
</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Military grade.</h2>
<p>Loved by developers at home. Trusted by developers at work.</p>
</section>
<section>
<h2>We love free software.</h2>
<p>(...)</p>
</section>
</main>
<footer>
<ul class="social">
<li class="github">
<a href="https://github.com/sparky-game">
<img src="github.svg" alt="GitHub logo">
</a>
</li>
<li class="linkedin">
<a href="https://linkedin.com/company/sparky-game">
<img src="linkedin.svg" alt="LinkedIn logo">
</a>
</li>
<li class="mastodon">
<a href="https://mastodon.social/@sparkygame">
<img src="mastodon.svg" alt="Mastodon logo">
</a>
</li>
</ul>
<p>Copyright (C) 2024 Wasym A. Alonso. All rights reserved.</p>
<ul>
<li>
<a href="mailto:[email protected]">
<img src="mail.svg" alt="Mail icon">
</a>
</li>
</ul>
</footer>
</body>
</html>