-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
26 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sample Website</title>
</head>
<body style="background-color: rgb(0, 0, 0); font-family : Arial, sans-serif; color: rgb(227, 211, 65); text-align: center;">
<h1>Welcome to My Sample Website</h1>
<p>This is a <span>simple</span> sample website created to demonstrate basic HTML structure.</p>
<form>
<label style="color: rgb(227, 211, 65);" for="name">Name:</label>
<input type="text" id="name" placeholder="Enter your name">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter your email">
<label for="photo">Photo:</label>
<label for="course">Course:</label>
<select id="course">
<option value="html">HTML</option>
<option value="css">CSS</option>
<option value="javascript">JavaScript</option>
</select>
<input type="file" id="photo" accept="image/*">
<button style="color: rgb(227, 65, 143);" type="submit">Submit</button>
</form>
</body>
</html>