-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (76 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<title>Yudame - Build Your Brand</title>
<link rel="icon" href="assets/favicon.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Raleway:wght@500;600&display=swap"
/>
<script
src="https://kit.fontawesome.com/c83e8fd695.js"
crossorigin="anonymous"
></script>
<style>
body,
.button {
font-family: "Raleway", sans-serif;
font-weight: 600;
}
</style>
</head>
<body>
<section class="hero is-danger is-fullheight">
<!-- Hero head: will stick at the top -->
<div class="hero-head">
<header class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item">
<img src="assets/logo-brand-trans.png" alt="Yudame logo" />
</a>
</div>
</div>
</header>
</div>
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">Build Your Brand</p>
<a
href="https://app.yuda.me/getting-started/0/"
class="button is-large is-white m-5"
>
Start
</a>
</div>
</div>
<!-- Hero footer: will stick at the bottom -->
<div class="hero-foot">
<nav class="is-boxed is-fullwidth">
<div class="container">
<div class="level">
<div class="level-left">
<figure class="image" style="width: 400px">
<img src="assets/yellow_girl.png" />
</figure>
</div>
<div class="level-right">
<figure class="image" style="width: 400px">
<img src="assets/yellow_guy.png" />
</figure>
</div>
</div>
</div>
</nav>
</div>
</section>
<script src="https://unpkg.com/[email protected]"></script>
</body>
</html>