-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (141 loc) · 6.15 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="MK International is world renown for its excellent mechanical keyboards" name="description"/>
<title>MK</title>
<link href="img/pbt-white.png" rel="shortcut icon" type="image/x-icon"/>
<link href="css/bulma.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="css/debug.css"> -->
<!-- <link rel="stylesheet" href = "https://www.jsdelivr.com/package/npm/bulma"> -->
<link href="css/helpers.css" rel="stylesheet">
<link href="css/grid.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="bulma-social.min.css" type="text/css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
</head>
<style>
.hero {
background: url(img/homepageMK.jpg) center/cover;
}
@media (max-width: 900px) {
.hero {
background: url(img/homepageMK.jpg) center/cover;
}
}
@media (max-width: 420px) {
.hero {
background: url(img/homepageMK-small.jpg) center/cover;
}
#mkSwitchH1 {
font-size: small;
font-weight: 800;
}
#mkSwitch {
width: 50px;
height: 50px;
}
}
</style>
<body>
<!--.hero-->
<section class="hero is-fullheight">
<header>
<nav aria-label="Main navigation" class="navbar is-warning" id="navBoja" role="navigation">
<div class="container">
<div class="navbar-brand is-tablet ">
<a href="index.html"><img height="20" id='mkSwitch' src="img/pbt-white.png" width="90"></a>
<p class="title is-4 navPBrand" style="color:white">Mechanical<br>Keyboard</p>
<div class="navbar-burger" data-target="navbar">
<span style="color:white"></span>
<span style="color:white"></span>
<span style="color:white"></span>
</div>
</div>
<div class="navbar-menu navBarAnchor" id="navbar" style="margin-left: 20%;">
<div class="navbar-start">
<div class="navbar-item AboutHover">
<a href="products.html">
<p>Keyboards</p>
</a>
</div>
<div class="navbar-item has-dropdown is-hoverable AboutHover ">
<a class="navbar-link aPreventDefault" href="contact.html">
<p>Contact</p>
</a>
<ul class="navbar-dropdown is-boxed">
<a class="navbar-item burgerColor" href="contact.html">Form</a>
<a class="navbar-item burgerColor" href="contact.html#a">Info</a>
</ul>
</div>
<div class="navbar-item AboutHover">
<a href="about.html">
<p>About Us</p>
</a>
</div>
</div>
<div class="navbar-end">
<div class="buttons has-addons cart">
<a class="navbar-item has-text-white" href="cart.html" id="cartAncher">
<span class="icon is-medium">
<i class="fa fa-cart-arrow-down"></i>
</span></a>
</div>
</div>
</div>
</div>
</nav>
</header>
<main class="hero-body center" style="padding: 2rem;">
<div id="grid" style="width: 768px;">
<div class="center-column has-text-centered subtitle" id="a">
<h2 class="title is-2 white ">SWITCH THE WORLD</h2><br>
<p class='content is-small'>High quality mechanichal keyboard's</p>
</div>
</div>
</main>
<!-- https://aldi.github.io/bulma-social/ for favicons -->
<div class="hero-foot" id="footerBoja">
<nav class="tabs">
<div class="container center-column ">
<ul>
<li><a about="Authors Linkdein profile" class="fafaIcons" href="">
<span class="icon is-medium">
<i class="fab fa-linkedin"></i>
<span> </a>
</li>
<li><a about="Authors Github profile" class="fafaIcons" href="https://github.com/markoscekic98">
<span class="icon is-medium ">
<i class="fab fa-github"></i>
</span> </a>
</li>
<li>
<a href="https://bulma.io" id="bulma">
</a>
</li>
<li>
<a about="All documentation for website" class="fafaIcons" href="documentatio.docx">
<span class="icon is-medium">
<i class="fas fa-file-pdf"></i>
</span>
</a>
</li>
<li>
<a about="More about author" class="fafaIcons" href="/about.html">
<span class="icon is-medium">
<i class="fas fa-user-shield"></i>
</span></a>
</li>
</ul>
</div>
</nav>
</div>
</section>
<script src="https://cdn.jsdelivr.net/combine/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@beta/dist/js.cookie.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js"></script>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>