-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.html
55 lines (47 loc) · 1.96 KB
/
store.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
<!DOCTYPE html>
<html>
<head>
<title>MIOS - STORE</title>
<!-- Need for media queries to work, no idea why though -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/main.css" rel="stylesheet">
<link href="css/store.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Nanum+Pen+Script&display=swap" rel="stylesheet">
</head>
<body>
<ul class="section header">
<li><a href="code.html"><img src="images/app.png" class="nav-icon"> <br> Code</a></li>
<li><a href="creative.html"><img src="images/creative.png" class="nav-icon"> <br> Creative</a></li>
<div id="logo"><a href="index.html" id="logo-a">MIOS</a></div>
<li><a href="store.html"><img src="images/store.png" class="nav-icon"> <br> Store</a></li>
<li><a href="resume.html"><img src="images/resume.png" class="nav-icon"> <br> Resume</a></li>
</div>
</ul>
<div id="store">
<div id="free">
<h2>Digital freebies</h2>
<h3>s10e wallpapers</h3>
<div id="s10e">
<div class="s10e-wallpaper">
<img src="images/s10e wallpapers/keep it up.jpg">
<p>Keep It Up</p>
</div>
<div class="s10e-wallpaper">
<img src="images/s10e wallpapers/harbinger.jpg">
<p>Harbinger</p>
</div>
</div>
</div>
<hr>
<div id="merch">
<img src="images/merch.jpg">
<h2>Coming Soon!</h2>
</div>
</div>
<ul class="footer">
<li><a href="https://github.com/limmlingg"><img src="images/github icon.png"><br>GitHub</a></li>
<li><a href="mailto:[email protected]"><img src="images/email icon.png"><br>Email</a></li>
<li><a href="https://www.linkedin.com/in/miaoling/"><img src="images/linkedin icon.png"><br>LinkedIn</a></li>
</ul>
</body>
</html>