-
Notifications
You must be signed in to change notification settings - Fork 0
/
csslab1.html
50 lines (35 loc) · 1005 Bytes
/
csslab1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>example domain</title>
<style type="text/css">
.section-1{
border-radius: 15px;
padding-top: 30px;
padding-bottom:30px ;
padding-left: 30px;
padding-right: 30px;
margin: 300px,300px;
height: 200px;
width: 700px;
background-color: white;
font-family: sans-serif;
}
a{text-decoration: none;}
body{
background-color:#f0f0f2;
margin-top: 160px;
margin-left: 300px;
}
</style>
</head>
<body>
<div class="section-1">
<h1>Example Domain</h1>
<p>This Domain is for use in illustrative examples in documents.you may use this domain in literature with prior coordination or asking permission</p>
<a href="https://www.iana.org/domains/reserved">More Information....</a>
</div>
</body>
</html>