This commit is contained in:
2022-12-30 16:48:03 +09:00
parent b3fafce27a
commit cc33dcb79e
2 changed files with 33 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -2,9 +2,41 @@
<html>
<head>
<title>Git Test Page</title>
<style>
code{
font-family: Consolas, "courier new";
color: crimson;
background-color: #f1f1f1;
padding: 2px;
font-size: 105%;
}
</style>
</head>
<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>
</html>