Initial commit
This commit is contained in:
70
css/all Border style.html
Normal file
70
css/all Border style.html
Normal file
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>All Border Style</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<style rel="stylesheet" type="text/css">
|
||||
body {
|
||||
font-family: verdana; font-size:10; font-weight:normal;
|
||||
}
|
||||
|
||||
p {
|
||||
border-color: pink;
|
||||
}
|
||||
|
||||
.none {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
.solid {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.dotted {
|
||||
border-style: dotted;
|
||||
}
|
||||
|
||||
.dashed {
|
||||
border-style: dashed;
|
||||
}
|
||||
|
||||
.double {
|
||||
border-style: double;
|
||||
}
|
||||
|
||||
.groove {
|
||||
border-style: groove;
|
||||
}
|
||||
|
||||
.ridge {
|
||||
border-style: ridge;
|
||||
}
|
||||
|
||||
.inset {
|
||||
border-style: inset;
|
||||
}
|
||||
|
||||
.outset {
|
||||
border-style: outset;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
border-style: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p class="none">The kiss, a sweet discovery of oneself after a long search.</p>
|
||||
<p class="solid">Sex is a momentary itch, love never lets you go.</p>
|
||||
<p class="dotted">To the world you may be someone, but to someone you may be the world.</p>
|
||||
<p class="dashed">It is better to be hated for who you are than to be loved for what you are not.</p>
|
||||
<p class="double">Wait for the one you love. Not the one who found you first.</p>
|
||||
<p class="groove">Where there is great love, there are always miracles. Willa Cather</p>
|
||||
<p class="ridge">You can't ever be really free if you admire somebody too much. Tove Jansson</p>
|
||||
<p class="inset">Love is, above all, the gift of oneself. Jean Anouih</p>
|
||||
<p class="outset">If equal affection cannot be, let the more loving be me. W.H. Auden</p>
|
||||
<p class="hidden">There is nothing like love in this world unless you experience it. Meenu Baheti</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user