-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (111 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
130 lines (111 loc) · 2.03 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Gerogia;
font-size: 17px;
text-align: center;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
opacity: 0.7;
}
.content {
position: fixed;
bottom: 10;
text-align: center;
color: black;
width: 100%;
padding: 20px;
font: Georgia;
}
.contentText {
font-style: italic;
}
ul {
font-style: none;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
font: Arial;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 1.05rem;
}
li a:hover {
background-color: #ddd;
}
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
.ribbon {
position:absolute;
top:0;
right:0;
}
</style>
<link rel="icon" href="logo2.png">
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="seed.mp4" type="video/mp4">
</video>
<div class="content">
<a href="index.html">
<img src="./logo22.png" class="ribbon"/>
</a>
<ul>
<li><a href="feed.html">Share Your Story</a></li>
<li><a class="active" href="arabic.html">العربية</a></li>
<li><a href="farsi.html">فارسی</a></li>
</ul>
<div class="contentText">
<h1>When you have more than you need,</h1>
<h1>build a longer table not a higher fence</h1>
<button id="myBtn" onclick="myFunction()">Create A Future</button>
</div>
</div>
<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");
function myFunction() {
window.location = "decide.html";
// if (video.paused) {
// video.play();
// btn.innerHTML = "Pause";
// } else {
// video.pause();
// btn.innerHTML = "Play";
// }
}
</script>
</body>
</html>