-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (59 loc) · 2.03 KB
/
index.html
File metadata and controls
63 lines (59 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Beer</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<script src="https://kit.fontawesome.com/82d6e84184.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar is-info">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="assets/bar.png">
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="#">
Home
</a>
<a class="navbar-item" href="https://github.com/Virtual-Beer-Development">
About
</a>
</div>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="field is-grouped">
<p class="control">
<a class="button is-dark is-small" href="https://github.com/Virtual-Beer-Development">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Github</span>
</a>
</p>
<a class="button is-link is-small" href="https://discord.gg/PgkrDVHcAr">
<span class="icon">
<i class="fab fa-discord"></i>
</span>
<span>
Join Our Discord!
</span>
</a>
</div>
</div>
</nav>
<div class="landing-page">
<h1><strong>Virtual Beer</strong></h1>
<h2>Take your bar with you to discord!</h2>
<div class="buttons">
<button class="button is-link" style="width:10em;">Invite!</button>
</div>
</div>
</body>
</html>