HTML interesse |
|
Html:
<!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" xml:lang="en" lang="en">
<head>
<title>Fading Blue</title>
<link href="FadingBlue.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<div class="content"><!--Begin Content-->
<h1>Overzicht</h1>
<h2>Formulier</h2>
<form action="View.html">
Textfield <input type="text" /><br />
Radio <input type="radio" name="tst" /> <input type="radio" name="tst" /><br />
Checkbox<input type="checkbox" /><br />
Button<input type="button" value="tst"/><br />
Select<select>
<option>Bla</option>
<option>Bla</option>
<option>Bla</option>
<option>Bla</option>
<option>Bla</option>
</select>
</form>
</div><!--Eind Content-->
</center>
</body>
</html>
<!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" xml:lang="en" lang="en"> <head> <title>Fading Blue</title> <link href="FadingBlue.css" rel="stylesheet" type="text/css" /> </head> <body> <center> <div class="content"><!--Begin Content--> <h1>Overzicht</h1> <h2>Formulier</h2> <form action="View.html"> Textfield <input type="text" /><br /> Radio <input type="radio" name="tst" /> <input type="radio" name="tst" /><br /> Checkbox<input type="checkbox" /><br /> Button<input type="button" value="tst"/><br /> Select<select> <option>Bla</option> <option>Bla</option> <option>Bla</option> <option>Bla</option> <option>Bla</option> </select> </form> </div><!--Eind Content--> </center> </body> </html>
css:
body,html {
font-family: "Trebuchet MS", Tahoma, Courier;
font-variant: small-caps;
color: aqua;
text-align: center;
height: 100%;
margin: 0px;
overflow: auto;
}
div.content {
text-align: left;
background-image: url(Background.png);
background-repeat: repeat-y;
width: 800px;
height: 100%;
position: relative;
}
input {
background-image: url(20Heigth_BlueWhiteBlue.png);
color: navy;
font-weight: Bold;
}
select {
background-color: #6495ED;
color: navy;
font-weight: Bold;
}
h1{
text-align: center;
color: Lime;
font-size: xx-large;
font-style: italic;
text-decoration: underline;
}
h2{
color: Red;
font-size: x-large;
font-weight: bold;
}
center{
height: 100%;
margin: 0px;
}
body,html { font-family: "Trebuchet MS", Tahoma, Courier; font-variant: small-caps; color: aqua; text-align: center; height: 100%; margin: 0px; overflow: auto; } div.content { text-align: left; background-image: url(Background.png); background-repeat: repeat-y; width: 800px; height: 100%; position: relative; } input { background-image: url(20Heigth_BlueWhiteBlue.png); color: navy; font-weight: Bold; } select { background-color: #6495ED; color: navy; font-weight: Bold; } h1{ text-align: center; color: Lime; font-size: xx-large; font-style: italic; text-decoration: underline; } h2{ color: Red; font-size: x-large; font-weight: bold; } center{ height: 100%; margin: 0px; }
|