-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
71 lines (58 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>HTN - MediaPipe Workshop</title>
<link href="main.css" rel="stylesheet" type="text/css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div class="navbar">
<div style="text-align: center">
<span
height="5%"
class="iconify"
data-icon="logos-tensorflow"
data-inline="false"
></span>
<a class="navbar-brand" href="index.html"
>MediaPipe Selfie Segmentation HackTheNorth Hackathon</a
>
</div>
</div>
<center>
<img
src="https://hackthenorth.com/preview_img_twitter.jpg"
height="20%"
width="70%"
/>
<header style="background-color: white">
</header>
</center>
<div class="button-container">
<button id="myButton" class="upload-btn" >Blur Background</button>
<button id="myButton1" class="upload-btn" >Virtual Background</button>
</div>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "./blurbackground/index.html";
};
</script>
<script type="text/javascript">
document.getElementById("myButton1").onclick = function () {
location.href = "./virtualbackground/index.html";
};
</script>
<!-- Script tag here -->
</body>
</html>