-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubproductpage.html
61 lines (61 loc) · 2.34 KB
/
subproductpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="UX/UI designer Sophie Kim's Portfolio">
<meta name="keywords" content="HTML,CSS,SCSS,JavaScript,UI,UX,designer,developer">
<meta name="author" content="Sophie Kim">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sophie Kim's Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600,800|Share:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="plugIns/themify-icons/themify-icons.css">
<link rel="stylesheet" href="css/style.css">
<title>Sub-product UI/UX full work</title>
<style>
.badgeGroup {
display: flex;
justify-content: center;
}
.badgeItem {
list-style: none;
border:1px solid grey;
border-radius: 4px;
margin-right: 0.5em;
padding: 2px 10px;
font-size: 0.8em;
}
</style>
</head>
<body>
<header>
<a style="text-decoration:none;" href="index.html">
<img class="logo" src="img/logoDark.png" alt="">
<img class="mLogo" src="img/logoLight.png" alt=""> </a>
<nav class="nav">
<div class="toggle">
<i class="ti-menu"></i>
<i class="ti-close"></i>
</div>
<ul>
<li><a href="index.html">HOME</a> </li>
<li><a class="about" href="./index.html#about">ABOUT</a></li>
<li><a href="./index.html#works">WORKS</a></li>
<li><a class="skills" href="./index.html#skills">SKILLS</a></li>
<li><a href="./index.html#contact">CONTACT</a></li>
</ul>
</nav>
</header>
<div class="workPage">
<h1 class="worksTitle">MOBIHQ - Sub-product UI/UX work</h1>
<nav class="badgeGroup">
<li class="badgeItem">UX Research</li>
<li class="badgeItem">Wireframe</li>
<li class="badgeItem">Prototype</li>
</nav>
<img src="img/subproductux.jpg"/>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/script.js" charset="utf-8"></script>
</html>