generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 2.05 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Project Essentials Explained</h1>
<p>Discover the roles of README files, wireframes, and Git branches in software development.</p>
</header>
<main>
<article>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="Github README editor with 'README' in green outline."/>
<h2>What is a README file?</h2>
<p>
A README file is an essential component of many software projects, especially those hosted on platforms like GitHub.
</p>
<a class="btn" href="https://www.geeksforgeeks.org/what-is-readme-md-file/#what-is-a-readmemd-file">Read more</a>
</article>
<article>
<img src="https://cdn.sanity.io/images/599r6htc/regionalized/4c8605ad998d69b03a6eefb850cce5e23a0a96dc-2880x1440.png?q=75&fit=max&auto=format&dpr=2" alt="what is a wireframe cover photo"/>
<h2>What is a Wireframe?</h2>
<p>
A wireframe is a visual blueprint of a website or application's layout, focusing on structure and functionality without the distraction of design elements.
</p>
<a class="btn" href="https://balsamiq.com/learn/articles/what-are-wireframes">Read more</a>
</article>
<article>
<img src="https://i0.wp.com/digitalvarys.com/wp-content/uploads/2019/06/image-6.png?fit=640%2C257&ssl=1" alt="" />
<h2>What is a Branch in Git?</h2>
<p>
In Git, a branch is an independent line of development that allows you to work on new features or fixes without affecting the main codebase.
</p>
<a class="btn" href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
</article>
</main>
<footer>
<p>
© 2025 Project Essentials. All rights reserved.
</p>
</footer>
</body>
</html>