Skip to content

Commit e4c6aab

Browse files
committed
Update index.html with new design and content
1 parent 5edc3df commit e4c6aab

1 file changed

Lines changed: 74 additions & 11 deletions

File tree

docs/index.html

Lines changed: 74 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,83 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Software Testing Concepts Demo</title>
7+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
8+
<style>
9+
body {
10+
font-family: 'Roboto', sans-serif;
11+
margin: 0;
12+
padding: 0;
13+
line-height: 1.6;
14+
background-color: #f4f4f4;
15+
}
16+
header {
17+
background-color: #007bff;
18+
color: #fff;
19+
padding: 20px 0;
20+
text-align: center;
21+
}
22+
header h1 {
23+
margin: 0;
24+
font-size: 2.5em;
25+
}
26+
header p {
27+
margin: 10px 0 0;
28+
font-size: 1.2em;
29+
}
30+
.container {
31+
width: 80%;
32+
margin: auto;
33+
overflow: hidden;
34+
padding: 20px;
35+
background: #ffffff;
36+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
37+
border-radius: 8px;
38+
}
39+
.about {
40+
margin: 20px 0;
41+
}
42+
.about h2 {
43+
text-align: center;
44+
color: #333;
45+
}
46+
.about ul {
47+
list-style: circle;
48+
margin: 10px 0 0 20px;
49+
padding: 0;
50+
}
51+
.about li {
52+
margin-bottom: 10px;
53+
}
54+
footer {
55+
background: #333;
56+
color: white;
57+
padding: 10px 0;
58+
text-align: center;
59+
}
60+
footer a {
61+
color: #ffc107;
62+
text-decoration: none;
63+
}
64+
</style>
765
</head>
866
<body>
9-
<h1>Software Testing Concepts Demo</h1>
10-
<h2>A journey into modern testing concepts</h2>
11-
<section>
12-
<h3>About</h3>
13-
<ul>
14-
<li>Understanding the basics of software testing.</li>
15-
<li>Exploring various testing methodologies.</li>
16-
<li>The importance of automated testing in software development.</li>
17-
</ul>
18-
</section>
67+
<header>
68+
<h1>Software Testing Concepts Demo</h1>
69+
<p>A journey into modern testing concepts</p>
70+
</header>
71+
<div class="container">
72+
<section class="about">
73+
<h2>About This Repository</h2>
74+
<ul>
75+
<li>Showcases comprehensive software testing techniques and strategies.</li>
76+
<li>Covers manual and automated testing methodologies.</li>
77+
<li>Includes Playwright integration for modern UI testing.</li>
78+
<li>Provides a practical demonstration of continuous integration using GitHub Actions.</li>
79+
</ul>
80+
</section>
81+
</div>
1982
<footer>
20-
<p>Find Brad on <a href="https://twitter.com/brad">Twitter</a>!</p>
83+
<p>&copy; 2026 - <a href="https://github.com/bg-playground/TestingDemo-02">View the Repository</a></p>
2184
</footer>
2285
</body>
2386
</html>

0 commit comments

Comments
 (0)