-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
88 lines (72 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dugsiiye Color Switcher
</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/tablet.css" media="screen and (max-width:900px)">
<link rel="stylesheet" href="/Mobile.css" media="screen and (max-width:600px)">
<!-- roboto -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<!-- righttous -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<!-- Indie Flower -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<!-- Anton-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
</head>
<body>
<section class="container">
<div class="boxes">
<div class="theme" id="brown" style="background:#a52a2a;"></div>
<div class="theme" id="limegreen" style="background:#32CD32;"></div>
<div class="theme" id="darkorange" style="background:#FF8C00;"></div>
<div class="theme" id="darkviolet" style="background:#9400D3;"></div>
<div class="theme" id="teal" style="background:#008080;"></div>
<div class="theme" id="navy" style="background:#000080;"></div>
<div class="theme" id="red" style="background:#ff0033;"></div>
<div class="theme" id="magenta" style="background:#e84393;"></div>
<div class="theme" id="gold" style="background:#FFD700;"></div>
<div class="theme" id="darkturquoise" style="background:#00CED1;"></div>
<div class="theme mobilview" id="chocolate" style="background:#D2691E;"></div>
<div class="theme mobilview" id="indigo" style="background:#4B0082;"></div>
</div>
<div class="btn">
<h1 id="text">Dugsiiye Color Switcher</h1>
</div>
<div class="inputs">
<input class="fontsize inputdet" " type="text" placeholder="Font-Size">
<input class="fontColor inputdet" " type="text" placeholder="Font-Color">
<input class="fontWeight inputdet" " type="text" placeholder="Font-Weight">
<select class="inputdet" name="fontsFamily" id="fonts" >
<option value="Choose a Font ">Choose a Font</option>
<option value="Roboto">Roboto</option>
<option value="Righteous">Righteous</option>
<option value="Indie Flower">Indie Flower</option>
<option value="Anton">Anton</option>
</select>
<select class="inputdet lastinput" name="textTransform" id="textTransform" >
<option value="uppercase ">uppercase</option>
<option value="Lowercase">Lowercase</option>
<option value="capitalize">capitalize</option>
</div>
</select></div>
<button class="refresh" id="btnRefresh" type="button">
<h3>Refresh page</h3>
</button>
</div>
</section>
<script src="/main.js"></script>
</body>
</html>