-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvideo-games.html
25 lines (23 loc) · 1.08 KB
/
video-games.html
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Is your video game bad?</title>
<meta name="description" content="video game checker" charset="utf-8">
<link rel="stylesheet" href="css.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Is that video game bad?</h1>
<p>Often video games contain bad stuff .</p>
<form action="video-games.php" method="post">
<fieldset>
<legend>Is your video game appropriate?</legend>
<label for="name">what is the video game called?</label><input type="text" id="name" name="name"><br>
<label for="has-sex">does the video game have sex/nudity?</label><input type="checkbox" id="has-sex" name="has-sex"><br>
<label for="gore">does the video game have blood or gore?</label><input type="checkbox" id="gore" name="gore"><br>
<label for="focus">is the video game focused around fighting/killing?</label><input type="checkbox" id="focus" name="focus"><br>
<button type="submit" name="button">check if that video game is violent</button><br>
</fieldset>
</form>
</body>
</html>