Css Lab
Css Lab
* { color: #000000; }
ul em {color: #000000;}
</style>
HTML form
<html>
<body>
<form>
</form>
</body>
</html>
<body>
<h2>Radio Buttons</h2>
<form>
<label for="html">HTML</label><br>
<label for="css">CSS</label><br>
<label for="javascript">JavaScript</label>
<P>this is checkbox</P>
</form>
<body>
<p>The yellow background is added to demonstrate the footprint of the DIV element.</p>
</body>
</html>
</body>
</html>
<html>
<head>
<style>
</style>
</head>
<body>
<form action="/action_page.php">
<fieldset>
<legend>Personal-info:</legend>
<label for="email">Email:</label>
<label for="birthday">Birthday:</label>
</form>
</body>
</html>
<html>
<body>
<h3>start attribute</h3>
<ol start="4">
<li>Java.</li>
<li>HTML.</li>
<li>CSS.</li>
<li>React.</li>
</ol>
<h3>reverse attribute</h3>
<ol reversed>
<li>Java.</li>
<li>HTML.</li>
<li>CSS.</li>
<li>React.</li>
</ol>
</body>
</html>
Navigation bar
<html>
<head>
<style>
ul {
background-color: #28bf17;
overflow: hidden;
list-style-type: none;
margin: 0;
padding: 0;
li {
float: left;
li a {
none;font-size: 17px;}
</style>
</head>
<body>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">eBook</a></li>
</ul>
<h1>Welcome to TutorialsPoint</h1>
</body>
</html>
<head>
<style>
200px;}
li {text-align: center;}
none;font-size: 17px;}
</style>
</head>
<body>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">eBook</a></li>
</ul>
</body>