From 5956c752f97b5b57816350a0f070233f8e229849 Mon Sep 17 00:00:00 2001 From: Abraham Raji <avronr@tuta.io> Date: Sat, 19 Sep 2020 01:54:34 +0530 Subject: [PATCH] Added Learners Page --- learners.html | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 learners.html diff --git a/learners.html b/learners.html new file mode 100644 index 0000000..dd31ccf --- /dev/null +++ b/learners.html @@ -0,0 +1,51 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <title>FSCAMP</title> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> + <link rel="apple-touch-icon" href="/apple-touch-icon.png"> + <!-- Place favicon.ico in the root directory --> + <link rel="stylesheet" href="" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" /> + </head> + <body> + <main> + <div class="nav-container"> + <nav> + <div class="logo"> + <a href="index.html">FS<span style="color:#469198">CAMP</span></a> + </div> + <input type="checkbox" id="chk"> + <label for="chk" class="show-menu-btn" style="align-items:center;"> + <i class="nav-icon fas fa-bars"></i> + </label> + <ul class="menu"> + <li><a href="index.html#about">About</a></li> + <li><a href="#">Code of Conduct</a></li> + <li><a href="#">Schedule</a></li> + <li><a href="#">Contact</a></li> + <label for="chk" class="hide-menu-btn"> + <i class="nav-icon fas fa-times"></i> + </label> + </ul> + </nav> + </div> + <div class="expectations"> + <h1 class="heading">Learner Expectations</h2> + <ul> + <li>Anyone who can commit 15-20 hours per week</li> + <li>Eagerness to learn</li> + <li>Willingness to contribute to society</li> + <li>Willingness to use GNU/Linux</li> + <li>Communicate with mentors using Free Software tools</li> + </ul> + </div> + <div class="reg_form"> + <iframe frameborder="2" src="https://ee.kobotoolbox.org/single/FMPfxisV" width="80%" height="100%" style="margin: auto;"></iframe> + </div> + </main> + </body> +</html> -- GitLab