-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (82 loc) · 3.13 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Tweegenous</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords"
content="Utilizer Login Form template Responsive, Login form web template, Flat # tables, Flat Drop downs # Web Templates, Flat Web Templates, Login # Responsive web template, SmartPhone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="main.js"></script>
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<link href="css/font-awesome.css" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700"
rel="stylesheet">
</head>
<body>
<!-- main -->
<div class="main-top-intro">
<div class="bg-layer">
<!-- header -->
<div class="wrapper">
<header>
<div class="header-w3layouts">
<h1>
<a class="navbar-brand logo" href="index.html">
Indigineous Tool for Native People
</a>
</h1>
</div>
<div class="clear"></div>
</header>
<!-- //header -->
<div class="content-inner-info" style="/*display: flex; justify-content: center*/">
<!-- <h2>Say Hello !!!</h2> -->
<div class="content-w3layouts-main">
<div class="form-w3ls-left-info">
<form onsubmit="return myfunc()">
<input type="text" placeholder="Search" id="search" required="" />
<select class="select-box" id="language">
<option value="nepali">Nepali</option>
<option value="maithili">Maithili</option>
<option value="hindi">Hindi</option>
<option value="bengali">Bengali</option>
</select>
<div class="bottom">
<button class="btn" type="reset">Reset</button>
<button class="btn reg" id="btn" type="submit">Submit</button>
<!-- <button class="btn reg" type="reset">Reset</button> -->
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //main -->
<script>
function myfunc(e) {
// e.preventDefault();
let username = document.getElementById('search').value;
let email = document.getElementById('language');
// console.log(username);
window.location.href="result.html";
return false;
}
</script>
</body>
</html>