-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
113 lines (104 loc) · 4.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebDev Academy</title>
<link rel="stylesheet" href="style.css"> <!-- Link to external CSS file -->
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="/">WebDev Academy</a> <!-- Logo/Site Title -->
</div>
<ul class="nav-links">
<li><a href="#tutorials">Tutorials</a></li>
<li><a href="#articles">Articles</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Learn Web Development</h1>
<p>Your journey to becoming a web developer starts here. Explore our tutorials, articles, and projects.</p>
<a href="#tutorials" class="button">Start Learning</a>
</div>
</section>
<section id="tutorials" class="content-section">
<h2>Tutorials</h2>
<div class="grid-container">
<article class="tutorial-card">
<h3>HTML Fundamentals</h3>
<p>Learn the basic structure of HTML.</p>
<a href="tutorial-html.html" class="read-more">Read More</a>
</article>
<article class="tutorial-card">
<h3>CSS Basics</h3>
<p>Learn how to style your web pages.</p>
<a href="tutorial-css.html" class="read-more">Read More</a>
</article>
<article class="tutorial-card">
<h3>JavaScript Introduction</h3>
<p>Get started with the language of interactivity.</p>
<a href="tutorial-js.html" class="read-more">Read More</a>
</article>
</div>
<!-- More tutorial cards -->
</section>
<section id="articles" class="content-section">
<h2>Articles</h2>
<div class="grid-container">
<article class="article-card">
<h3>Understanding Responsive Design</h3>
<p>Learn why and how to make websites that adapt to different screen sizes.</p>
<a href="article-responsive.html" class="read-more">Read More</a>
</article>
<article class="article-card">
<h3>Web Accessibility Best Practices</h3>
<p>Learn to build websites for everyone.</p>
<a href="article-accessibility.html" class="read-more">Read More</a>
</article>
<article class="article-card">
<h3>Choosing a Web Framework</h3>
<p>A look at popular options for front end development</p>
<a href="article-framework.html" class="read-more">Read More</a>
</article>
</div>
<!-- More article cards -->
</section>
<section id="projects" class="content-section">
<h2>Projects</h2>
<div class="grid-container">
<article class="project-card">
<h3>Simple Portfolio Website</h3>
<p>A project to practice with HTML and CSS.</p>
<a href="project-portfolio.html" class="read-more">Read More</a>
</article>
<article class="project-card">
<h3>To-Do List App</h3>
<p>Build a basic to-do app with HTML, CSS and JavaScript.</p>
<a href="project-todo.html" class="read-more">Read More</a>
</article>
<article class="project-card">
<h3>Calculator</h3>
<p>Learn JavaScript logic with a simple project</p>
<a href="project-calc.html" class="read-more">Read More</a>
</article>
</div>
<!-- More Project cards -->
</section>
<section id="about" class="content-section">
<h2>About WebDev Academy</h2>
<p>WebDev Academy is designed to be a free resource for learning all about web development. We strive to make coding accesible to anyone, from beginner to advanced learners. </p>
<p>We are constantly working to create new content and improve your learning experience. Feel free to get in touch with any feedback.</p>
</section>
</main>
<footer>
<p>© 2024 WebDev Academy. All rights reserved.</p>
</footer>
</body>
</html>