-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.html
55 lines (52 loc) · 968 Bytes
/
css.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
<html>
<head>
<title> Sowmini </title>
<style>
.rd{
width:200px;
height:200px;
box-shadow: 25px 25px 50px dimgrey;
margin-bottom:40px;
margin-top:40px;
}
.box2{
width:200px;
height:200px;
background-color:plum;
box-shadow:inset -25px -25px 50px dimgrey;
}
</style>
</head>
<body>
<div class="rd">
This is sowmini
</div>
<div class="box2">
This is sowmini
</div>
<style>
h1{text-shadow:-4px 4px 6px dimgrey;
font-size:400%;}
</style>
<body>
<h1 > Text Shadow
</h1>
<style>
div{
width:200px;
height:200px;
border:3px solid navy;
padding:5px 20px;
text-align:center;
background: -webkit-gradient(
linear,center top, center bottom,
color-stop(15%,white), color-stop(50%, lightsteelblue), color-stop(75%, navy));
float:left;
margin-right:15px;
}
</style>
</head>
<body>
<div>Vector linear gradient</div>
</head>
</html>