Skip to content

Add files via upload #18

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
8 changes: 8 additions & 0 deletions FAQ.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
body, h1, h2, h3, p {
margin:30px;
padding: 0;
font-family: Arial, sans-serif;
}

body {background-color: rgb(235, 235, 235);
padding: 2px; }
69 changes: 69 additions & 0 deletions FAQ.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frequently Asked Questions</title>
<link rel="stylesheet" href="FAQ.css"> <!-- Link to an external CSS file for styling -->
</head>
<body>
<header>
<h1>Frequently Asked Questions</h1>
<p>Your questions answered!</p>
</header>

<main>
<section id="faq">
<h2>General Questions</h2>
<div class="faq-item">
<h3>1. What courses do you offer?</h3>
<p>We offer a variety of courses including HTML, CSS, JavaScript, Python, Java, and more. Our courses cater to beginners as well as advanced learners.</p>
</div>
<div class="faq-item">
<h3>2. How long do the courses take?</h3>
<p>Our courses vary in length, but most can be completed in 4 to 12 weeks, depending on the course and your pace of learning.</p>
</div>
<div class="faq-item">
<h3>3. Do I need prior experience to enroll?</h3>
<p>No prior experience is necessary for our beginner courses. We provide all the foundational knowledge you need to get started.</p>
</div>
<div class="faq-item">
<h3>4. What if I have questions during the course?</h3>
<p>You can reach out to our instructors through our online forum or during live Q&A sessions. We also have a community of learners who can help you.</p>
</div>
<div class="faq-item">
<h3>5. Are there any certifications offered?</h3>
<p>Yes! Upon successful completion of a course, you will receive a certificate that you can share on your LinkedIn profile or resume.</p>
</div>
</section>

<section id="technical-questions">
<h2>Technical Questions</h2>
<div class="faq-item">
<h3>1. What tools do I need for coding?</h3>
<p>You will need a computer and an internet connection. Specific tools may vary by course, but we recommend using a code editor like Visual Studio Code.</p>
</div>
<div class="faq-item">
<h3>2. Can I access the course materials after completion?</h3>
<p>Yes, you will have lifetime access to all course materials, including videos and resources, even after you complete the course.</p>
</div>
<div class="faq-item">
<h3>3. What if I miss a live session?</h3>
<p>No worries! All live sessions are recorded and made available for you to watch at your convenience.</p>
</div>
<div class="faq-item">
<h3>4. Are the courses self-paced?</h3>
<p>Yes, most of our courses are self-paced, allowing you to learn at your own speed. However, some courses may have specific deadlines for assignments.</p>
</div>
<div class="faq-item">
<h3>5. How can I get support if I encounter issues?</h3>
<p>You can contact our support team via email or through the support chat on our website. We are here to help you!</p>
</div>
</section>
</main>

<footer>
<p>&copy; 2024 DEvNest Code Learning Platform. All rights reserved.</p>
</footer>
</body>
</html>
Binary file added app dev.webp
Binary file not shown.
102 changes: 102 additions & 0 deletions app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
list-style: none;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}

/* Header styles */
header {
background: #007bff;
color: #fff;
padding: 20px 0;
text-align: center;
}

header h1 {
margin-bottom: 10px;
}

header p {
font-size: 1.2em;
}

/* Navigation styles */
nav {
background: #333;
color: #fff;
}

nav ul {
display: flex;
justify-content: center;
padding: 10px 0;
}

nav ul li {
margin: 0 15px;
}

nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}

nav ul li a:hover {
text-decoration: underline;
}

/* Main content styles */
main {
padding: 20px;
max-width: 800px;
margin: 20px auto;
background: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}

section {
margin-bottom: 20px;
}

section h2 {
color: #007bff;
margin-bottom: 10px;
}

section p {
margin-bottom: 10px;
}

section h3 {
margin-top: 15px;
color: #333;
}

section ul {
margin-left: 20px;
}

section ul li {
margin-bottom: 5px;
}

/* Footer styles */
footer {
text-align: center;
padding: 15px 0;
background: #007bff;
color: #fff;
position: relative;
bottom: 0;
width: 100%;
margin-top: 20px;
}
95 changes: 95 additions & 0 deletions app.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Development Course</title>
<link rel="stylesheet" href="app.css"> <!-- Link to an external CSS file for styling -->
</head>
<body>
<header>
<h1>App Development Course</h1>
<p>Learn how to build amazing applications from scratch!</p>
</header>

<nav>
<ul>
<li><a href="#chapter1">Chapter 1: Introduction to App Development</a></li>
<li><a href="#chapter2">Chapter 2: Setting Up Your Environment</a></li>
<li><a href="#chapter3">Chapter 3: Basic UI Design</a></li>
<li><a href="#chapter4">Chapter 4: Building Your First App</a></li>
<li><a href="#chapter5">Chapter 5: Advanced Features</a></li>
<li><a href="#chapter6">Chapter 6: Testing and Deployment</a></li>
<li><a href="#chapter7">Chapter 7: Final Project</a></li>
</ul>
</nav>

<main>
<section id="chapter1">
<h2>Chapter 1: Introduction to App Development</h2>
<p>Overview of app development, types of applications, and platforms.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Research different types of apps.</li>
<li>Identify your favorite app and analyze its features.</li>
</ul>
</section>

<section id="chapter2">
<h2>Chapter 2: Setting Up Your Environment</h2>
<p>Installing necessary tools and software for app development.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Install IDE (Integrated Development Environment).</li>
<li>Set up a version control system (e.g., Git).</li>
</ul>
</section>

<section id="chapter3">
<h2>Chapter 3: Basic UI Design</h2>
<p>Understanding user interface design principles and tools.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Create wireframes for your app.</li>
<li>Design a basic user interface using design tools.</li>
</ul>
</section>

<section id="chapter4">
<h2>Chapter 4: Building Your First App</h2>
<p>Step-by-step guide to building a simple application.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Follow a tutorial to build a basic app.</li>
<li>Implement features learned in previous chapters.</li>
</ul>
</section>

<section id="chapter5">
<h2>Chapter 5: Advanced Features</h2>
<p>Incorporating advanced functionalities such as APIs and databases.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Integrate an API into your app.</li>
<li>Set up a database and perform CRUD operations.</li>
</ul>
</section>

<section id="chapter6">
<h2>Chapter 6: Testing and Deployment</h2>
<p>Testing your application and preparing it for deployment.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Conduct unit and integration testing.</li>
<li>Deploy your app to an app store or web server.</li>
</ul>
</section>

<section id="chapter7">
<h2>Chapter 7: Final Project</h2>
<p>Apply everything you've learned to create a final project.</p>
<h3>Practical Learning:</h3>
<ul>
<li>Develop a complete app from start to finish.</li>
<li>Present your project to the class for feedback.</li>
</ul>
</section>
</main>
Binary file added backend.avif
Binary file not shown.
Binary file added front.webp
Binary file not shown.
Binary file added full stack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added full stack2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions full.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background: #35424a;
color: #ffffff;
padding: 20px 0;
text-align: center;
}

nav ul {
list-style: none;
padding: 0;
}

nav ul li {
display: inline;
margin: 0 15px;
}

nav ul li a {
color: #ffffff;
text-decoration: none;
}

main {
padding: 20px;
}

section {
background: #ffffff;
margin: 20px 0;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
color: #35424a;
}

footer {
text-align: center;
padding: 10px 0;
background: #35424a;
color: #ffffff;
position: relative;
bottom: 0;
width: 100%;
}
Loading