-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UMask</title>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="styles/style.css" rel="stylesheet">
</head>
<body>
<div class = "row no-gutters">
<div class="col-md-6 no-gutters" id = 'beginner' style="cursor: pointer;">
<div class="leftside d-flex justify-content-center align-items-center">
<div id = "overlay1">
</div>
<h2>Adhesive</h2>
</div>
</div>
<h1 id = "title" class="absolute-center">Make Your Mask</h1>
<div class="col-md-6 no-gutters" id = 'advanced' style="cursor: pointer;">
<div class="rightside d-flex justify-content-center align-items-center">
<div id = "overlay2">
</div>
<h2>Sewn</h2>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>