-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>OpenProfile</title>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="https://openprofile.is-cool.dev/view">View</a>
<a href="https://openprofile.is-cool.dev/privacy">Privacy Policy</a>
<a href="https://docs.sctech.localplayer.dev/openprofile">Docs</a>
<a class="button" href="https://openprofile.is-cool.dev">Generate Card</a>
</nav>
</header>
<main>
<section class="hero">
<h1>OpenProfile</h1>
<p>The platform that lets you create customizable profile cards.</p>
</section>
<section class="features">
<div class="feature">
<i class="fas fa-paint-brush"></i>
<h3>Customizable</h3>
<p>Choose from various fields.</p>
</div>
<div class="feature">
<i class="fas fa-code"></i>
<h3>OpenProfile+</h3>
<p>A (free!) premium membership which unlocks special features.</p>
</div>
<div class="feature">
<i class="fas fa-lock"></i>
<h3>Secure</h3>
<p>Your data is secure and handled with care.</p>
</div>
</section>
</main>
<footer>
<p>(ↄ) 2024 OpenProfile Project. No rights reserved.</p>
</footer>
</body>
</html>