This is a solution of a Thapa Technical Codefest.
The Problem Statement is to make a single page Online education website ( only frontend work ). I am Smruti ranjan nayak Btech 1st Year Studet in CSE Branch. I complete this problem below solution you saw every single function, code, and feature. in a few months, I had designed many components or websites, this is my first codefest or hackathon challenge to develop my skills.
in this project, I learned many things as I had never designed or coded a FAQ section and I had designed this website in Figma first then I had code.
here is the Figma file
This challenge is absolutely made for those who love to code websites and make the website look modern, sleek, user-friendly, responsive n many more. You have to create a single page of the Online Education Website using any preferred language you want. You have to only code the front-end part, no back-end code is needed.
Ex. Navbar, Header section, Services/Features, Courses, FAQ, Contact, Footer, etc.
- Single Page Online Education Website
- Only Front-End Code (Any Language)
- Make it responsive on all devices
Demo : link
Client:
Html, Css , Scss and Javascript
Server: netlify
| index.html // Index Html File
| README.md // Readme File
| Webook.fig // Figma File
|
\---app // All Files or Images
+---images
| | ba1.png
| | causal.png
| | menu-alt.png
| | menu-x.png
| | preloader.gif
| |
| \---logo
| Favicon.svg
| logo.svg
|
+---js
| script.js // Main Javascript file
|
\---scss
| style.css // Main Style CSS File
| style.css.map
| style.scss // Main Style SCSS File
|
+---components // Here present all of components
| _about.scss
| _banner.scss
| _classes.scss
| _contact.scss
| _courses.scss
| _expert.scss
| _faq.scss
| _features.scss
| _footer.scss
| _header.scss
| _index.scss
| _preloadder.scss
| _subscribe.scss
|
+---global // Here present all Default Html code and Color Codes
| _boilerplate.scss
| _colors.scss // All Colours file
| _fonts.scss // Font File
| _images.scss // Images url File
| _index.scss
| _typography.scss
|
\---util
_breakpoints.scss // Media Query Function
_functions.scss // Some function
_index.scss
:root{
--primarycolor:hsl(179, 93%, 44%);
--blue:hsl(183, 100%, 35%);
--lightblue:hsl(183, 49%, 63%);
--secondarycolor:hsl(217, 10%, 25%);
--Backgroundcolor:hsl(216, 18%, 16%);
--white:hsl(0, 0%, 100%);
--darkishwhite:hsl(0, 0%, 78%);
}
- if you intrest change color code as you prefer then go the
app > scss > global > colors.scss
- in this project i had used Outfit
- Font-weight : 400 600 800;
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap" rel="stylesheet">
:root{
--outfit:'Outfit',sans-serif;
}
- if you intrest change font family as you prefer then go the
app > scss > global > fonts.scss
:root{
--toggleimg:url(../images/menu-alt.png);
--toggleactiveimg:url(../images/menu-x.png);
--preloadder:url(../images/preloader.gif);
--featuresimage:url('https://images.unsplash.com/photo-1605711285791-0219e80e43a3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1469&q=80');
}
2022 © Copyright Webook And Design By SM8UTI 😃
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.