Skip to content

Instantly share code, notes, and snippets.

@inv-Ayiba
Created June 12, 2019 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inv-Ayiba/89b0d2c2c72c22bd4da2881a5ec860a0 to your computer and use it in GitHub Desktop.
Save inv-Ayiba/89b0d2c2c72c22bd4da2881a5ec860a0 to your computer and use it in GitHub Desktop.
Audio PC landing page
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Audio PC landing page</title>
<header id="header">
<img src="https://image.flaticon.com/icons/png/128/1441/1441580.png" alt="image of sound" height="25" width="30" id="header-img">
<div class=tittle><h1 id='title' >An Audio PC is all you need </h1></div>
</header>
</head>
<body>
<div class="a">
</div>
<div class=well >
<p id = "description">This is survey form to know how you want to setup your personal AI</p>
<form id= "survey-form">
<label id="name-label">NAME:</label> <input type = "text" id="name" required minlength="6" maxlength="24" placeholder="name"> <br> <br>
<label id="email-label">EMAIL:</label>
<input type="email" id="email" name="email" required minlength="6" maxlength="24" placeholder="email">
<br> <br>
<label id= "number-label">NUMBER: </label> <input type = "number" id="number" required min="4" max="24" placeholder="00"> <br> <br>
<label>Type Of Input:</label>
<select name="input" id ="dropdown">
<option value="audio">audio</option>
<option value="visual">visual</option>
<option value="visual/audio">visual/audio</option>
<option value="other">Other</option>
</select>
<br><br>
<p>Select a platform:</p>
<div>
<input type="radio" id="Azure" name="platform" value="Azure"
checked>
<label for="Azure">Azure</label>
</div>
<div>
<input type="radio" id="Google" name="platform" value="Google">
<label for="Google">Google</label>
</div>
<div>
<input type="radio" id="AWS" name="platform" value="AWS">
<label for="AWS">AWS</label>
</div>
<p>Choose your equiptment</p>
<div>
<input type="checkbox" id="cam lens" value = "extra" name="cam lens"
checked>
<label for="cam lens">cam lens</label>
</div>
<div>
<input type="checkbox" id="server" value = "extra" name="server">
<label for="server">server</label>
</div>
<div>
<input type="checkbox" id="proximity sensor" value = "extra" name="proximity sensor">
<label for="proximity sensor">proximity sensor</label>
</div>
<div>
<textarea id= "textbox"></textarea><br>
<button id="submit" class="btn btn-success" >submit</button>
</div>
</form>
</div>
</body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>
// !! IMPORTANT README:
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place.
/***********
INSTRUCTIONS:
- Select the project you would
like to complete from the dropdown
menu.
- Click the "RUN TESTS" button to
run the tests against the blank
pen.
- Click the "TESTS" button to see
the individual test cases.
(should all be failing at first)
- Start coding! As you fulfill each
test case, you will see them go
from red to green.
- As you start to build out your
project, when tests are failing,
you should get helpful errors
along the way!
************/
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example!
// Once you have read the above messages, you can delete all comments.
div.a{text-align:center}
div.well{text-align:center}
div.title{text-align:right}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment