-
Notifications
You must be signed in to change notification settings - Fork 0
/
assignment24.html
134 lines (129 loc) · 2.84 KB
/
assignment24.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body{
background-image: url(start.gif);
}
a{
text-decoration: none;
font-size: x-large;
font-family:'Times New Roman', Times, serif;
color:white;
}
body{
background-color: rgb(13, 53, 146);
}
li{
display: inline;
padding-left: 50px;
margin-left: 50px;
}
.new{
font-family:'Times New Roman', Times, serif;
font-size: xx-large;
color:rgb(235, 226, 226);
margin-left: 50px;
}
p::first-letter{
color:red;
font-size: 50px;
}
.a1{
display: flex;
}
.a2{
margin-left: 100px;
margin-top: 40px;
}
li a:hover{
color:cyan;
text-shadow: black;
}
.a3{
margin-top: 45px;
margin-left: 30px;
height:100px;
width:auto;
}
.a5{
font-size:80px;
font-family: 'Times New Roman', Times, serif;
font-weight: 2000;
color:white;
margin-left: 20px;
margin-top: 50px;
}
.a4{
display: flex;
}
.a6{
margin-left: 200px;
}
.a6:hover{
color:cyan;
height: 100px;
width:100px;
}
.a7{
font-size: 20px;
color:rgb(190, 190, 251)
}
.footer{
background-color: rgba(200, 186, 186, 0.511);
display: flex;
justify-content: space-between;
height: 100px;
width:auto;
}
.d1{
color:black;
font-size: xx-large;
font-family: cursive;
margin-top: 20px;
margin-left: 20px;
}
</style>
<body>
<div class="a1">
<div class="new">
<p>Psychedelics</p>
</div>
<div class="a2">
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Portfolio</a></li>
<li><a href="">Team</a></li>
<li><a href="">Drop Down</a></li>
</ul>
</div>
</div>
<div class="a4">
<div class="a5" style="margin-left: 80px;">
<b>Better Solution For<br>
Your Bussiness
<div class="a7">We are team of talented desginers making<br>website with Bootstrap<br></div>
<img src="start1.png" height="200px">
</div>
<div class="a6">
<img src="https://www.pngmart.com/files/11/Information-Technology-Transparent-Images-PNG.png" height="500x" width="auto">
</div>
</div>
<div>
</div>
<footer>
<div class="footer">
<div class="d1">Lily</div>
<div class="d1">Delp</div>
<div class="d1">My JOb</div>
<div class="d1">DCX</div>
</div>
</footer>
</body>
</html>