-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.html
53 lines (53 loc) · 946 Bytes
/
css.html
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
<!DOCTYPE html>
<html>
<head>
<title>Combinator Selector Practice</title>
<link rel="stylesheet" href="css.css">
<style>
/* Add your CSS rules here */
</style>
</head>
<body>
<header>
<h1>Welcome to the Combinator Selector Practice</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
2
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>About Us</h2>
<p class="mrudula">We are a web development company...</p>
</section>
<section>
<h2 class="mrudula">Our Services</h2>
<ul>
<li>Web Design</li>
<li>Front-end Development</li>
<li>Back-end Development</li>
</ul>
</section>
</main>
<div id="additional-info">
<div class="paragraphs">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
</div>
3
<div class="links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
</div>
</div>
<footer>
<p>© 2023 Combinator Selector Practice</p>
</footer>
</body>
</html>