-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (58 loc) · 943 Bytes
/
styles.css
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
body{
/*To selecte a background image*/
background-image:url('home.jpg');
}
.header{
/* To modify the header*/
text-align: center;
background-color: black;
color: green;
}
a:link{
color:green;
}
.section{
text-align: center;
display:inline-block;
padding: 20px;
font-size:20px;
}
a{
color: red;
text-decoration:none;
text-align:center;
}
a:link{
color:red;
text-decoration:none;
text-align:center;
}
a:hover{
color:hotpink;
text-decoration:underline;
}
figure{
text-align:center;
}
figcaption{
/*To add text with image*/
text-align:center;
background-color:brown;
color:blue;
}
p,ol,li{
text-align:center;
color:yellow;
size:small;
}
p em {
color:brown;
}
#footer{
position:fixed;
left:0;
bottom:0;
width:100%;
text-align:center;
color:black;
}