-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (46 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>So You Want to Be a Software Developer</title>
<link rel="stylesheet"
href="styles.css">
</head>
<body>
<header>
<h1 id="main-title">So You Want to Be a Software Developer</h1>
<p class="tagline">Exploring the World of Coding and Development!</p>
</header>
<main class="main-content">
<section class="content">
<h2 class="section-title">Languages to Learn</h2>
<ul>
<li class="language">JavaScript</li>
<li class="language">Python</li>
<li class="language">React</li>
<li class="language">Databases</li>
</ul>
</section>
<section class="content">
<h2 class="section-title">Why Become a Developer?</h2>
<p id="reasons">There are many reasons to become a developer: problem-solving, creativity, and the thrill of building something from scratch!</p>
</section>
<section class="content">
<h2 class="section-title">Developer Skills</h2>
<p>Along with languages, software developers often work with tools and techniques like:</p>
<ul>
<li class="skill">Version control with Git</li>
<li class="skill">Debugging and troubleshooting</li>
<li class="skill">Collaboration in teams</li>
<li class="skill">Responsive web design</li>
</ul>
</section>
</main>
<footer>
<p class="footer-note">Happy Coding! - From ThriveDX</p>
</footer>
<script src="index.js"></script>
</body>
</html>