forked from erilinus/on-a-roll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,55 @@ | |
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Project 3</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<!-- dont forget to add a css file and link it here! --> | ||
</head> | ||
<body> | ||
<!-- video or image as a header is cool :) --> | ||
|
||
<div class="hero-image"> | ||
<!-- <img src="images/girlwithtoiletpaper.jpg" alt="Girl with toilet paper">--> | ||
<h1>On a roll</h1> | ||
</div> | ||
|
||
|
||
<section class="form"> | ||
<form action="https://httpbin.org/anything" method="post"> | ||
<label for="Message">personal message</label> | ||
<input type="text" name="Message"> | ||
|
||
<label for="Name">Name</label> | ||
<input type="text" name="Name"> | ||
|
||
<label for="email">E-mail</label> | ||
<input type="email" name="email" placeholder="[email protected]"> | ||
|
||
<label for="Address1">Street</label> | ||
<input type="text" name="Address1"> | ||
|
||
<label for="Address2">Zip code</label> | ||
<input type="text" name="Address2"> | ||
|
||
<p>Paper quality</p> | ||
<input type="radio" id="High" name="quality" value="High"> | ||
<label for="High">High quality</label> | ||
|
||
<input type="radio" id="Medium" name="quality" value="Medium"> | ||
<label for="Medium">Medium quality</label> | ||
|
||
<input type="radio" id="Low" name="quality" value="Low"> | ||
<label for="Low">Low quality</label> | ||
|
||
<input type="checkbox" id="terms" name="terms" value="accept"> | ||
<label for="terms">I accept the terms and conditions</label> | ||
|
||
<button type="submit">Submit</button> | ||
</form> | ||
</section> | ||
|
||
|
||
<!-- Signup form --> | ||
|
||
|
||
<section class="accordion"> | ||
<!-- Accordion --> | ||
|
@@ -26,5 +69,6 @@ <h1>FAQ</h1> | |
</div> | ||
</section> | ||
<!-- dont forget to link the javascript file here! --> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters