forked from mountain658/mountain658.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheconomicalhome.html
120 lines (111 loc) · 2.67 KB
/
economicalhome.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Economical</title>
<link rel="shortcut icon"
type="image/jpg" href="mountainNoFade.png"
/>
</head>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
position: relative;
width: 100%;
max-width: 150px;
}
.container img {
width: 100%;
height: auto;
}
.container .btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: white;
color: white;
font-size: 16px;
padding: 12px 24px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: center;
}
.container .btn:hover {
background-color: white;
}
.whiteButton {
position: absolute;
top: 0px;
right: 0px;
display: flex;
}
.whitebutton {
background-color: Transparent;
background-repeat:no-repeat;
border: none;
cursor: default;
overflow: hidden;
outline:none;
}
body {
background-image: url('mountain.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
</head>
<body>
<h1>Economical 1 & 2</h1>
<label for="searchbox">Search</label>
<input
type="search"
oninput="liveSearch()"
id="searchbox"
>
<script src="search.js"></script>
<br>
<br>
<br>
<br>
<div class="container">
<img src="economical.png" alt="Economical" style="width:100%">
<button class="btn"><a href="economical.html">Economical</a></button>
</div>
<div class="container">
<img src="economical2.png" alt="Economical 2" style="width:100%">
<button class="btn"><a href="economical2.html">Economical 2</a></button>
</div>
<br>
<br>
<div class="container">
<button class="btn"><a href="suggestions.html">Suggestions</a></button>
</div>
<div class="container">
<a href="/"
style="position:absolute;width;50px;height: 50px;left:20px;top: 50px;" >Back To Home Page</a>
</div>
<div class="whiteButton">
<input class="whitebutton" type="button" onclick="location.href='/zPass.html';" value=" . " />
</div>
<script>
loadTitle();
function loadTitle(){
if (localStorage.Titlesave) {
document.title = localStorage.Titlesave;
}
}
loadIcon();
function loadIcon(){
if (localStorage.Iconsave) {
function changeFavicon(src) { var link = document.createElement('link'), oldLink = document.getElementById('dynamic-favicon'); link.id = 'dynamic-favicon'; link.rel = 'shortcut icon'; link.href = src; if (oldLink) { document.head.removeChild(oldLink);
} document.head.appendChild(link);}
changeFavicon(localStorage.Iconsave);
}
}
</script>
</body>
</html>