Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added css/skeleton.css
Empty file.
75 changes: 72 additions & 3 deletions skeleton.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,73 @@
general_assembly_logo.png

<!DOCTYPE html>
<html>
<head>
<title>General Assembly Account Creation</title>

<link rel="stylesheet" href="/css/skeleton.css">
</head>

<body>
<!-- Image Logo -->
<img src="general_assembly_logo.png" alt="">

<!-- Title -->
<h1>General Assembly Account Creation</h1>

<!-- Paragraph Text -->
<p>Welcome to the General Assembly. General Assembly is a global
institution training people all over the world in today's top
technologies.

Please fill out the information below to create your General Assembly
account. Let us know what city you're in and what course
you're taking. This list is for all students. Please tell us what
city you're in and whether you're taking the Immersive User Experience (UX)
course or the Immersive Web Development course.</p>

<!-- City Drop Down List -->
<label>City:
<select>
<option value="HK">Hong Kong</option>
<option value="London">London</option>
<option value="Los Angeles">Los Angeles</option>
<option value="New York">New York</option>
<option value="Portland">Portland</option>
<option value="San Fransico">San Fransico</option>
<option selected="selected" value="Seattle">Seattle</option>
<option value="Singapore">Singapore</option>
</select>
</label>

<!-- Line Breaker -->
<br><br>

<!-- Course Radio Buttons -->
<form class="" action="success.html" method="post">
<label>Course:
<input type="radio" name="course" value="UX"> UX
<input checked="checked" type="radio" name="course" value="Web Dev"> Web Dev
</label>

<!-- Line Breaker -->
<br><br>

<!-- Input Fields -->
Name <input type="text" name="name"><br><br>
Email <input type="email" name="name"><br><br>
Password <input type="password" name="name"><br><br>

<!-- Checkbox -->
<input type="checkbox" name="subscribe" checked> Yes, subscribe me to the General Assembly student newsletter<br><br>

<!-- Button -->
<button type="submit" name="Submit">Subscribe</button>
</form>

</body>
</html>

<!-- general_assembly_logo.png

General Assembly Account Creation

Expand All @@ -10,7 +79,7 @@
account. Let us know what city you're in and what course
you're taking. This list is for all students. Please tell us what
city you're in and whether you're taking the Immersive User Experience (UX)
course or the Immersive Web Development course.
course or the Immersive Web Development course.

City:
Hong Kong
Expand All @@ -32,4 +101,4 @@

[] Yes, subscribe me to the General Assembly student newsletter

[Subscribe]
[Subscribe] -->