-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.77 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ResetCSS Demo | GETSoftware Co.</title>
<!-- Kendi CSS dosyamızı dahil ediyoruz -->
<link rel="stylesheet" href="reset.css">
<style>
/* Sadece demo sunumu için ekstra stil (ResetCSS'ten bağımsız) */
.container { max-width: 800px; margin: 40px auto; padding: 20px; background: #fff; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.section { margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
</style>
</head>
<body>
<div class="container">
<header class="text-center section">
<h1>ResetCSS Demo</h1>
<p>A modern, lightweight CSS reset & starter kit.</p>
<a href="https://github.com/GETSoftwareCo/ResetCSS">View on GitHub</a>
</header>
<section class="section">
<h2>Typography</h2>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>This is a standard paragraph element. ResetCSS ensures consistent line-height and font rendering across browsers using system fonts.</p>
<p>You can also use <a href="#">inline links</a> within text.</p>
</section>
<section class="section">
<h2>Form Elements</h2>
<form style="display: grid; gap: 1rem; max-width: 400px;">
<div>
<label>Text Input:</label>
<input type="text" placeholder="Type something..." style="width: 100%">
</div>
<div>
<label>Select Box:</label>
<select style="width: 100%">
<option>Option 1</option>
<option>Option 2</option>
</select>
</div>
<div>
<label>Textarea:</label>
<textarea rows="3" placeholder="Enter message..." style="width: 100%"></textarea>
</div>
<div class="grid">
<button type="button">Primary Button</button>
<button type="button" disabled>Disabled</button>
</div>
</form>
</section>
<section class="section">
<h2>Lists</h2>
<ul>
<li>Unordered list item 1</li>
<li>Unordered list item 2</li>
</ul>
<hr style="border:0; border-top:1px solid #eee; margin: 10px 0;">
<ol>
<li>Ordered list item 1</li>
<li>Ordered list item 2</li>
</ol>
</section>
<footer class="text-center">
<small>© 2024 GETSoftware Co. - MIT License</small>
</footer>
</div>
</body>
</html>