-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (58 loc) · 2.56 KB
/
index.html
File metadata and controls
59 lines (58 loc) · 2.56 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width;initial-scale=1">
<title>Blogs Of modeset Terminator</title>
<link rel="stylesheet" href="./style/style.css" type="text/css" media="all" />
<script>
selectBaidu = () => {
document.getElementById("search-form").action = "https://www.baidu.com/s?"
document.getElementById("search-name").name = "wd"
document.getElementById("search-engine").innerText = "Baidu"
}
selectBing = () => {
document.getElementById("search-form").action = "http://www.bing.com/search?"
document.getElementById("search-name").name = "q"
document.getElementById("search-engine").innerText = "Bing"
}
selectSougou = () => {
document.getElementById("search-form").action = "https://www.sogou.com/web?"
document.getElementById("search-name").name = "query"
document.getElementById("search-engine").innerText = "Sougou"
}
</script>
</head>
<body>
<ul class="nav">
<li class="home"><a href="./index.html">Home</a></li>
<li class="blogs"><a href="./blogs.html">Blogs</a></li>
<li class="about"><a href="./about.html">About</a></li>
</ul>
<div class="main">
<h1>Blogs Of modeset Terminator</h1>
<p>Here is a blog website of mine to introduce myself and contain my blogs.</p>
<p style="color: var(--color-alizarin);">NOTICE: Now You Are Using <b id="search-engine">Bing</b> Search Engine! </p>
<div class="search">
<form action="http://www.bing.com/search?" id="search-form" method="get" accept-charset="utf-8">
<input type="text" name="q" id="search-name" placeholder="Surf The dotcom using Bing !" />
<button type="submit">Search</button>
</form>
</div>
<p>Select Your Favorate Search Engine: </p>
<input type="radio" name="select-search" checked onclick="javascript: selectBing()"> Bing
<input type="radio" name="select-search" onclick="javascript: selectBaidu()"> Baidu
<input type="radio" name="select-search" onclick="javascript: selectSougou()"> Sougou
<h2>Companion Websites</h2>
<ul>
<li><a href="https://www.rmolives.com/">Magic Notes From Nuo Nuo</a></li>
<li><a href="https://www.himelang.com/">Hime Programming Language Documentation</a></li>
<li><a href="https://wiki.wumoe.cn/">Wumoe Wiki & Encyclopedia</a></li>
<li><a href="https://www.wumoe.org.cn/">Wumoe Community</a></li>
</ul>
</div>
<footer>
Created with heart by nomodeset_xforcevesa
</footer>
</body>
</html>