-
Notifications
You must be signed in to change notification settings - Fork 6
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
307 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>user-category</title> | ||
</head> | ||
<body> | ||
<div id="logo"> | ||
<a href="index.html"> | ||
<img src="res/devcenter-logo.svg"> | ||
</a> | ||
|
||
</div> | ||
<div id="name"> | ||
<h2>Coding101</h2> | ||
</div> | ||
<div id="content"> | ||
<h2>I am a..</h2> | ||
</div> | ||
|
||
<div id="sec-cat"> | ||
<div class="background"> | ||
<div class="transbox"> | ||
<p>Secondary School Graduate</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="grad-awt-cat"> | ||
<div class="background"> | ||
<div class="transbox"> | ||
<p>Student/ Graduate/ Awaiting NYSC</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="empl-cat"> | ||
<div class="background"> | ||
<div class="transbox"> | ||
<p>Employed/ Corp Members/ Unemployed</p> | ||
</div> | ||
</div> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>explainer</title> | ||
</head> | ||
<body> | ||
<div id="logo"> | ||
<a href="index.html"> | ||
<img src="res/devcenter-logo.svg"> | ||
</a> | ||
|
||
</div> | ||
<div id="name"> | ||
<h2>Coding101</h2> | ||
</div> | ||
<div id="content"> | ||
<h2>We've already done the hardwork on curating the best resources to help you.</h2> | ||
|
||
<h3>All you have to do is try to answer the next couple of question as best as you can so we can figure out what you may like.</h3> | ||
|
||
<h4>We then use that to create a track that might be the most engaging way for you to get into tech.</h4> | ||
</div> | ||
<div id="button"> | ||
<button type="button" href="category.html">Begin</button> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>index</title> | ||
</head> | ||
<body> | ||
<div id="logo"> | ||
<a href="./"> | ||
<img src="res/devcenter-logo.svg"> | ||
</a> | ||
|
||
</div> | ||
<div id="name"> | ||
<h2>Coding101</h2> | ||
</div> | ||
<div id="content"> | ||
<h2>Coding101 aims to help people who are interested in coding get an head start.</h2> | ||
|
||
<h3>We understand that coding can be a bit confusing at the beginning and we are here to help you get started.</h3> | ||
</div> | ||
<div id="button"> | ||
<button type="button" href="explainer.html">How?</button> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>question</title> | ||
</head> | ||
<body> | ||
<div id="logo"> | ||
<a href="index.html"> | ||
<img src="res/devcenter-logo.svg"> | ||
</a> | ||
|
||
</div> | ||
<div id="name"> | ||
<h2>Coding101</h2> | ||
</div> | ||
|
||
<form> | ||
<div id="quiz"> | ||
<label>I am a Secondary School Graduate</label> | ||
|
||
<div class="quest-1"> | ||
<li> | ||
|
||
<h3>What do you prefer as a hobby/ what do you do in your free time</h3> | ||
<hr> | ||
|
||
<div> | ||
<input type="checkbox" name="question-1-answers" id="question-1-answers-A" value="A" /> | ||
<label for="question-1-answers-A">A) Computer Styled Sections </label> | ||
</div> | ||
|
||
<div> | ||
<input type="checkbox" name="question-1-answers" id="question-1-answers-B" value="B" /> | ||
<label for="question-1-answers-B">B) Cascading Style Sheets</label> | ||
</div> | ||
|
||
<div> | ||
<input type="checkbox" name="question-1-answers" id="question-1-answers-C" value="C" /> | ||
<label for="question-1-answers-C">C) Crazy Solid Shapes</label> | ||
</div> | ||
|
||
<div> | ||
<input type="checkbox" name="question-1-answers" id="question-1-answers-D" value="D" /> | ||
<label for="question-1-answers-D">D) None of the above</label> | ||
</div> | ||
|
||
</li> | ||
|
||
</div> | ||
</div> | ||
|
||
<div> | ||
<div id="button"> | ||
<button type="button">Back</button> | ||
</div> | ||
<div id="button"> | ||
<button type="button">Next</button> | ||
</div> | ||
</div> | ||
|
||
</form> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>resources</title> | ||
</head> | ||
<body> | ||
<div id="logo"> | ||
<a href="index.html"> | ||
<img src="res/devcenter-logo.svg"> | ||
</a> | ||
|
||
</div> | ||
<div id="name"> | ||
<p>Coding101</p> | ||
</div> | ||
<div id="content"> | ||
<p>We've already done the hardwork on curating the best resources to help you.</p> | ||
|
||
<p>All you have to do is try to answer the next couple of question as best as you can so we can figure out what you may like.</p> | ||
|
||
<p>We then use that to create a track that might be the most engaging way for you to get into tech.</p> | ||
</div> | ||
<div id="button"> | ||
<button type="button">Begin</button> | ||
</div> | ||
</body> | ||
</html> |