-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (99 loc) · 3.19 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html dir="rtl">
<head>
<title>زال</title>
<link rel="stylesheet" href="./css/main-style.css">
<link rel="stylesheet" href="./css/font.css">
<link rel="shortcut icon" href="./images/ico_2.png" type="image/x-icon">
</head>
<body>
<header>
<section class="left-section">
<select id="lang-toggle">
<option value="fa">فارسی</option>
<option value="en">English</option>
</select>
<img src="./images/icons8-language-50.png" alt="language">
</section>
<section>
<fieldset>
<legend>نمایش نتایج جستوجو</legend>
<section>
<input type="radio" id="nwindow" name="solution">
<label for="nwindow">باز کردن پنجره</label>
</section>
<section>
<input type="radio" id="ntab" name="solution">
<label for="ntab">باز کردن برگه</label>
</section>
</fieldset>
</section>
</header>
<main>
<section>
<h1>زال | میانبر موتورهای جستوجو</h1>
<p>با زال یک بار جست و جو کنید و چندین بار نتایج را مشاهده کنید.</p>
</section>
<section>
<form onsubmit="event.preventDefault();" role="search" class="search-form">
<input id="search" type="search" placeholder="بنویس..." autofocus required class="search-input" />
<button type="submit" id="search-btn">برو</button>
</form>
</section>
<section class="section-lower">
<section>
<div>
<input type="checkbox" id="google">
<label for="google">گوگل</label>
</div>
<div>
<input type="checkbox" id="ddg">
<label for="ddg">داکداکگو</label>
</div>
<div>
<input type="checkbox" id="bing">
<label for="bing">بینگ</label>
</div>
<div>
<input type="checkbox" id="wiki">
<label for="wiki">ویکیپدیا</label>
</div>
<div>
<input type="checkbox" id="yandex">
<label for="yandex">یَندِکس</label>
</div>
<div>
<input type="checkbox" id="yahoo">
<label for="yahoo">یاهو</label>
</div>
<div>
<input type="checkbox" id="zbin">
<label for="zbin">ذرهبین</label>
</div>
</section>
<section>
<div>
<input type="checkbox" id="brave">
<label for="brave">بِرِیو</label>
</div>
<div>
<input type="checkbox" id="ask">
<label for="ask">اَسک</label>
</div>
<div>
<input type="checkbox" id="webc">
<label for="webc">خزندهوب</label>
</div>
</section>
</section>
</main>
<footer>
<span><a href="https://github.com/IndieHum" target="_blank">گیتهاب</a> سازنده</span>
</footer>
<script src="./js/main.js" type="module"></script>
</body>
</html>
<!--
https://codepen.io/jkantner/pen/eYmvvqQ?editors=1100
https://codepen.io/liamj/pen/vYYLGZj
-->