-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (116 loc) · 6.1 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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>Dynamic</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container mx-3 my-5">
<div class="row">
<div class="col-md-5">
<div class="card shadow">
<div class="card-header">
<h1>Dynamic Input</h1>
</div>
<div class="card-body">
<div class="form-group">
<label id="head">Heading</label>
<input class="form-control heading" type="text">
</div> <br>
<div class="form-group">
<label id="body">Paragraph</label>
<textarea id="my-text" placeholder="Type something" cols="49" rows="5"></textarea>
</div> <br>
<div class="form-group">
<label id="text-align-h">Text Align ~ <span>Head</span> </label><br>
<label id="left">
<input class="align" checked name="align" type="radio" value="Left">
Left
</label>
<label id="center">
<input class="align" name="align" type="radio" value="Center">
Center
</label>
<label id="right">
<input class="align" name="align" type="radio" value="Right">
Right
</label>
</div> <br>
<div class="form-group">
<label id="text-align-b">Text Align ~ <span>Body</span> </label><br>
<label id="left">
<input class="alignb" checked name="alignb" type="radio" value="Left">
Left
</label>
<label id="center">
<input class="alignb" name="alignb" type="radio" value="Center">
Center
</label>
<label id="right">
<input class="alignb" name="alignb" type="radio" value="Right">
Right
</label>
</div> <br>
<div class="form-group">
<label class="form-label-size">Size ~ <span>Head</span> </label>
<input class="w-100 size" type="range" step="1px" min="0" max="100" value="25">
</div>
<div class="form-group">
<label class="form-label-sizeb">Size ~ <span>Body</span> </label>
<input class="w-100 sizeb" type="range" step="1px" min="0" max="100" value="25">
</div> <br>
<div class="form-group">
<label for="" class="form-label-Ch">Color ~ <span>Head</span> </label>
<input type="color" class="form-control form-control-hcolor" value="#563d7c">
</div>
<div class="form-group">
<label for="" class="form-label-Cb">Color ~ <span>Body</span> </label>
<input type="color" class="form-control form-control-bcolor" value="#b2b2b2">
</div><br>
<div class="form-group">
<label id="ffh">Font-Family ~ <span>Head</span> </label><br>
<select class="form-select ffh">
<option selected>--Select Menu--</option>
<option value="quicksand">Quicksand</option>
<option value="abel">Abel</option>
<option value="dancing script">Dancing Script</option>
<option value="unbounded">Unbounded</option>
<option value="la belle aurore">La Belle Aurore</option>
<option value="permanent marker">Permanent Marker</option>
</select>
</div><br>
<div class="form-group">
<label id="ffb">Font-Family ~ <span>Body</span> </label><br>
<select class="form-select ffb">
<option selected>--Select Menu--</option>
<option value="montserrat">Montserrat</option>
<option value="robot">Roboto</option>
<option value="dancing script">Dancing Script</option>
<option value="amatic sc">Amatic SC</option>
</select>
</div><br>
<div class="form-group">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="checkbox">
<label class="form-check-label" for="checkbox">Dark Mode</label>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-7">
<section>
<h1 class="holder"></h1>
<p class="store"></p>
</section>
</div>
</div>
</div>
<script src="./index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>