rudra0410hf commited on
Commit
a7031fb
·
verified ·
1 Parent(s): e86bf6e

Delete models/demo.html

Browse files
Files changed (1) hide show
  1. models/demo.html +0 -66
models/demo.html DELETED
@@ -1,66 +0,0 @@
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 CSS Page</title>
7
- <style>
8
- body {
9
- font-family: Arial, sans-serif;
10
- margin: 0;
11
- padding: 0;
12
- text-align: center;
13
- background-color: #f4f4f4;
14
- }
15
-
16
- header {
17
- background-color: #3498db;
18
- color: white;
19
- padding: 20px;
20
- font-size: 24px;
21
-
22
- }
23
-
24
- section {
25
- margin: 20px auto;
26
- padding: 20px;
27
- background-color: white;
28
- border-radius: 10px;
29
-
30
- max-width: 600px;
31
- }
32
-
33
- button {
34
- background-color: #2ecc71;
35
- color: white;
36
- padding: 10px 20px;
37
- border: none;
38
- border-radius: 5px;
39
- cursor: pointer;
40
- font-size: 16px;
41
- transition: background-color 0.3s ease;
42
- }
43
-
44
- button:hover {
45
- background-color: #27ae60;
46
- }
47
-
48
- footer {
49
- background-color: #333;
50
- color: white;
51
- padding: 10px;
52
- margin-top: 20px;
53
- font-size: 14px;
54
- }
55
- </style>
56
- </head>
57
- <body>
58
- <header>Welcome to My Simple CSS Page</header>
59
- <section>
60
- <h2>Styled Elements</h2>
61
- <p>This is a simple webpage demonstrating basic CSS styling.</p>
62
- <button>Click Me</button>
63
- </section>
64
- <footer>&copy; 2025 My Simple Page. All rights reserved.</footer>
65
- </body>
66
- </html>