-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 2.41 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 2.41 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style id="myStyle">
.button:hover {
color: var(--main_color)
}
</style>
</head>
<body>
<div class="container background1">
</div>
<div class="container background2">
</div>
<div class="container">
<div class="clock_container">
<div class="maincontent">
<h2> Input countdown duration </h2>
<form action='' method='POST' enctype='multipart/form-data'>
<div class="row">
<input class="seethrough_form col_50" type="text" placeholder="minutes" id="myMinutes">
<input class="seethrough_form col_50" type="text" placeholder="seconds" id="mySeconds">
</div>
<div class="specialOptions">
<div class="row">
<input class="seethrough_form col_50" type="text" placeholder="link for video" id="myVideoLink">
<input class="seethrough_form col_50" type="text" placeholder="link for image" id="myImage">
</div>
</div>
</form>
<div class="buttons">
<button class="specialButton" type="button" onClick="showSpecial()">More</button>
<button class="button" type="button" onClick="time()">Submit</button>
</div>
</div>
</div>
</div>
<div id="info">
<div class="informationBox">
<h4 style="margin-bottom: 2px;">Check me out in github:</h4>
<p style="margin-top: 2px;"><a href="https://github.com/Aaronkala/countdown-timer">github // countdown-timer</a></p>
<p>This project was made by <a href="http://aaronalex.fi"><strong>Aaron Hakala</strong></a></p>
<p><a onclick="fillTest()">Fill form with test data</a><p>
</div>
<i class="fa fa-info-circle fa-2x" aria-hidden="true" onclick="information()" id="infoButton"></i>
</div>
</body>
</html>