-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (55 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HopeVid</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="Web-Components/styles.css" />
<link rel="stylesheet" href="Web-Components/log.css">
<meta name="author" content="Team codeBlooded">
<script>
function changeFrame(newPage){
document.getElementById('myframe').src = newPage + ".html";
}
</script>
</head>
<body>
<nav class="navbar nav">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item head has-text-white" id="Hero" onClick="changeFrame(this.id)">
H <sup>+</sup>
</a>
</div>
<div class="navbar-menu">
<div class="navbar-end">
<a class="nav-new navbar-item" href="Web-Components/HopeVid.html" id="myframe">
About
</a>
<a href="" class="nav-new navbar-item">
Developers
</a>
</div>
</div>
</div>
</nav>
<!-- Navigation -->
<!--Grid-->
<div class="columns">
<!--Grid 1-->
<div class="column is-one-fifth is-mobile">
<iframe src="Web-Components/Statistics.html" width="100%" height="500" scrolling="no"></iframe>
</div>
<!--Grid 2-->
<div class="column is-mobile">
<iframe src="Web-Components/Login.html" width="100%" height="800" scrolling="no" allowusermedia allow="camera *;microphone *"></iframe>
</div>
<!--Grid 3-->
<div class="column is-one-fifth is-mobile">
<iframe src="Web-Components/News.html" width="100%" height="600" scrolling="no"></iframe>
</div>
</div>
</body>
</html>