-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_display_3.html
More file actions
70 lines (69 loc) · 2.11 KB
/
css_display_3.html
File metadata and controls
70 lines (69 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible", content="IE-edge">
<title>Display | Vijay CSS</title>
<link rel="stylesheet", href="css/style.css">
<link rel="stylesheet", href="css/fonts.css">
<link rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"> <!--Import more fonts from font-awesome-->
<style>
h1 {font-size: 40px; color: #ff4976;}
p {font-size: 20px; color: #bdbbbb; line-height: 2.0;}
body
{
background-color: #252525;
font-family: Arial;
}
nav ul
{
background-color: #7e3900;
text-align: right;
font-size: 30px;
padding: 20px;
}
nav ul li
{
list-style-type: none;
display: inline-block;
margin-inline: 20px;
}
nav ul li a
{
color: #09ff00;
text-decoration: none;
}
nav ul li a:hover
{
color: #006e12;
text-decoration: underline;
}
section
{
margin: 3em;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Heading 1</h1>
<p>This is a paragraph for heading 1 - currently there is nothing on this webpage to show.</p>
</section>
</main>
<footer>
</footer>
</body>
</html>