Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit #12

Closed
wants to merge 4 commits into from
Closed
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
45 changes: 45 additions & 0 deletions app/category.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!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>
30 changes: 30 additions & 0 deletions app/explainer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!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>
83 changes: 20 additions & 63 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -1,68 +1,25 @@
<!doctype html>
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>Coding101</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="assets/components/skeleton/skeleton.css" rel="stylesheet">
<link href="assets/css/style.min.css" rel="stylesheet">
<script src="https://use.fontawesome.com/ab67cbccfa.js"></script>
<script src="assets/components/modernizr/modernizr.js"></script>
<title>index</title>
</head>

<body>
<header class="container">
<nav class="header">
<div class="row">
<div class="six columns">
<a class="nav-logo" href="/">Coding101</a>
</div>
<div class="six columns">
<div class="nav-link">
<a class="active" href="/">Tracks</a>
<a href="questions.html">Questions</a>
</div>
</div>
</div>
</nav>
</header>
<section class="borderline"></section>
<section class="container add-track m-t-xl m-b-xl">
<a href="new-track.html"><i class="fa fa-plus"></i>New Track</a>
</section>
<section class="container tracks">
<div class="row list">
<div class="eight columns">
<p class="title">Coding With HTML / CSS</p>
<p class="sub-title"><em>coding-with-html.</em> 3 resources</p>
</div>
<div class=" four columns">
<a href="new-track.html">Manage Track</a>
</div>
</div>
<div class="row list">
<div class="eight columns">
<p class="title">Back End: Javascript</p>
<p class="sub-title"><em>back-end-javascript.</em> 3 resources</p>
</div>
<div class="four columns">
<a href="new-track.html">Manage Track</a>
</div>
</div>
<div class="row list">
<div class="eight columns">
<p class="title">Front End: Javascript</p>
<p class="sub-title"><em>front-end-javascript.</em> 3 resources</p>
</div>
<div class="four columns">
<a href="new-track.html">Manage Track</a>
</div>
</div>
</section>
<script src="assets/js/scripts.min.js"></script>
</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>

</html>
<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>
100 changes: 0 additions & 100 deletions app/new-question.html

This file was deleted.

70 changes: 0 additions & 70 deletions app/new-track.html

This file was deleted.

Loading