-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (79 loc) · 2.52 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
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue Tutorial</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.1/css/bulma.min.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
</style>
</head>
<body>
<!-- NavBar va a todo lo ancho -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/95/Vue.js_Logo_2.svg" width="148" height="36">
</a>
</div>
<div class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="/index.html">
HOME
</a>
<a class="navbar-item" href="/pokemon.html">
POKEMON
</a>
<a class="navbar-item" href="/about.html">
ABOUT
</a>
<a class="navbar-item" href="/animation.html">
ANIMATION
</a>
<a class="navbar-item" href="/conditional.html">
CONDITION
</a>
</div>
</div>
</nav>
<!-- Hero del producto -->
<section class="hero is-white is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered reverse-columns">
<div class="column
is-10-mobile
is-10-tablet
is-5-desktop
is-5-widescreen
is-5-fullhd " data-aos="fade-down">
<h1 class="title titled is-1 mb-6">
Vue JS Multipage Tutorial
</h1>
</div>
<div data-aos="fade-right" class="column
is-10-mobile
is-10-tablet
is-4-desktop
is-7-widescreen
is-4-fullhd is-offset-1-fullhd">
<figure class="image is-square">
<img src="../images/pattern.jpg">
</figure>
</div>
</div>
</div>
</div>
</section>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true
});
</script>
</body>
</html>