-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbasiccss.html
More file actions
41 lines (40 loc) · 1.02 KB
/
basiccss.html
File metadata and controls
41 lines (40 loc) · 1.02 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
h1{
color: #00F;
font-size: 45px;
font-style: italic;
text-align:center;
}
p{
background:#F09;
text-indent:150px;
color:#300;
font-size:30px;
line-height:50px;
}
table tr td{
border-left-width:3px;
border-left-color:#C00;
border-bottom-color:#090;
border-bottom-width:5px;
border-bottom-style:dashed;
}
</style>
</head>
<body>
<h1>WELCOME TO MY SITE</h1>
<p>I want to become a good and successful Software Engineer(Ethical Hacker).As i have keen intrest in Ethical Hacking.I want to work for good and big company as a Ethical Hacker.....</p>
<table>
<tr>
<td>White Hat</td>
<td>Black Hat</td>
<td>Grey Hat</td>
</tr>
</table>
</body>
</html>