Вы находитесь на странице: 1из 2

H:\Websites\course\contact.

html

Sunday, February 14, 2016 11:57 PM

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="discoveryvip">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<link rel="stylesheet" href="style.css">
<style>
li {
display: inline;
padding: 5px;
}
canvas {
border: 1px solid #000000;
}
</style>
</head>
<body>
<header>Company Name and slogan</header>
<nav>
<ul>
<li>Home Page</li>
<li>About</li>
<li>Products</li>
<li>Contact</li>
</ul>
</nav>
<section>
<header>
<h1>Contact Us here </h1></header>
<div>
<form method="get" autocomplete="off">
<fieldset>
<legend>person</legend>
First Name
<input type="text" name="ftName" id="ftName" placeholder="First Name">
<BR> Password
<input type="password" name="password" id="password" required>
</fieldset>
<BR>
<input list="mydata">
<datalist id="mydata">
<option value="one">
<option value="two">
<option value="three">
</datalist>

-1-

H:\Websites\course\contact.html

Sunday, February 14, 2016 11:57 PM

<select name="myselction">
<option value="one">One</option>
<option value="two">two</option>
<option value="three">three</option>
</select>
<BR> Email
<input type="email" name="email">
<BR>
<input type="url" name="url">
<BR>
<input
<BR>
<input
<BR>
<input
<BR>
<input

type="date" name="myDate">
type="search" name="s">
type="color" name="c">
type="range" name="mynew" min="10" max="100">

<BR>
<input type="number" name="mynumber" min="10" max="100">
<BR> Subscribe to our newsletter
<input type="checkbox" name="checkme" value="Yes" checked>
<BR> Did you like our website
<input type="radio" name="radiobutton" value="yes">Yes
<input type="radio" name="radiobutton" value="no">No
<BR>
<textarea name="myText">Hello</textarea>
<BR>
<input type="submit" value="Submit this form">
</form>
</div>
</section>
<aside>
<header></header>
<div></div>
</aside>
<footer></footer>

<script src="script.js"></script>
</body>
</html>

-2-

Вам также может понравиться