File tree Expand file tree Collapse file tree 2 files changed +32
-24
lines changed
Expand file tree Collapse file tree 2 files changed +32
-24
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > Simple Page</ title >
7+ </ head >
8+ < body >
9+
10+ < h1 > Simple Web Page</ h1 >
11+ < p > This is a simple web page with a button, a drop-down box, and a text box.</ p >
12+
13+ < h2 > Input Section</ h2 >
14+
15+ < h3 > Text Box</ h3 >
16+ < p > Enter your text below:</ p >
17+ < input type ="text " placeholder ="Type something... " style ="width: 200px; ">
18+
19+ < h3 > Drop-Down Box</ h3 >
20+ < p > Select an option:</ p >
21+ < select >
22+ < option value ="option1 "> Option 1</ option >
23+ < option value ="option2 "> Option 2</ option >
24+ < option value ="option3 "> Option 3</ option >
25+ </ select >
26+
27+ < h3 > Button</ h3 >
28+ < p > Click the button below:</ p >
29+ < button type ="button " onclick ="alert('Button clicked!') "> Click Me</ button >
30+
31+ </ body >
32+ </ html >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments