-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
53 lines (48 loc) · 1.66 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="icon" href="https://cdn.discordapp.com/attachments/687037546492199037/758876941276676096/github-153-675523.png" type="image/png" />
<title>Discord UI | Project GitHub</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav class="nav-bar">
<section class="nav-branding">
<i class="fab fa-discord"></i> DISCORD UI
</section>
<section class="nav-item">
<ul>
<li><a href="https://github.com/CraterMaik/discord-ui" target="_blank">GitHub</a></li>
<li><a href="https://portalmybot.com" target="_blank">Portal</a></li>
<li><a href="https://portalmybot.com/codes/" target="_blank">Codes</a></li>
</ul>
</section>
</nav>
<section>
<div class="container">
<section class="body-home">
<div class="card">
<div class="title">Profile Normal</div>
<a class="btn" href="./profile-normal/">View</a>
</div>
<div class="card">
<div class="title">Profile Listening</div>
<a class="btn" href="./profile-listening/">View</a>
</div>
<div class="card">
<div class="title">Profile Playing</div>
<a class="btn" href="./profile-playing/">View</a>
</div>
<div class="card">
<div class="title">Profile Streaming</div>
<a class="btn" href="./profile-streaming/">View</a>
</div>
</section>
</div>
</section>
</body>
</html>