Hello
This commit is contained in:
34
test.html
34
test.html
@@ -2,9 +2,41 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Git Test Page</title>
|
<title>Git Test Page</title>
|
||||||
|
<style>
|
||||||
|
code{
|
||||||
|
font-family: Consolas, "courier new";
|
||||||
|
color: crimson;
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
padding: 2px;
|
||||||
|
font-size: 105%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
Hello new Git!!
|
<p><cite>welcome</cite>Hello New Git!!!</p>
|
||||||
|
<p>the HTML <code>button</code> tag defines a clickable button.</p>
|
||||||
|
<p>The CSS <code>background-color</code>property defines the background color of an element.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h1>The datalist element</h1>
|
||||||
|
|
||||||
|
<form action="/action_page.php" method="get">
|
||||||
|
<label for="browser">Choose your browser from the list:</label>
|
||||||
|
<input list="browsers" name="browser" id="browser">
|
||||||
|
<datalist id="browsers">
|
||||||
|
<option value="Edge">
|
||||||
|
<option value="Firefox">
|
||||||
|
<option value="Chrome">
|
||||||
|
<option value="Opera">
|
||||||
|
<option value="Safari">
|
||||||
|
</datalist>
|
||||||
|
<input type="submit">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<p><strong>Note:</strong> The datalist tag is not supported in Safari 12.0 (or earlier).</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user