-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest part 2.html
101 lines (46 loc) · 1.19 KB
/
test part 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Drone Management Site</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.div3 {
width: 180px;
height: 280px;
float: left;
padding: 50px;
border: 8px solid black;
box-sizing: border-box;}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
* {
box-sizing: border-box;
}
body {
font-family: Beautiful minds;
}
</style>
</head>
<body style="background-color:#495464;">
<table>
<tr>
<td>
<div class="div3" style="background-color:#495464;color:white;opacity:0.8;padding:20px;float:left;"><p style="text-align: center;font-family:Beautiful minds;">Gurgaon is a city just southwest of New Delhi in northern India. It is known as a financial and<br>
technology hub.</p>
</div>
</tr>
</table>
</body>
</html>