We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc7ad3 commit 7e90bcaCopy full SHA for 7e90bca
README.md
@@ -1 +1,24 @@
1
-# askarigtec.github.io
+# Simple Web Page
2
+
3
+This is a simple web page with a button, a drop-down box, and a text box.
4
5
+## Input Section
6
7
+### Text Box
8
+Enter your text below:
9
10
+<input type="text" placeholder="Type something..." style="width: 200px;">
11
12
+### Drop-Down Box
13
+Select an option:
14
15
+<select>
16
+ <option value="option1">Option 1</option>
17
+ <option value="option2">Option 2</option>
18
+ <option value="option3">Option 3</option>
19
+</select>
20
21
+### Button
22
+Click the button below:
23
24
+<button type="button" onclick="alert('Button clicked!')">Click Me</button>
0 commit comments