Skip to content

Commit 0049039

Browse files
authored
Revise index.html with new content and title
Updated the title and added sections for Readme, branch, and wireframe with explanations.
1 parent 16df0bb commit 0049039

1 file changed

Lines changed: 26 additions & 16 deletions

File tree

Wireframe/index.html

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,41 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Wireframe</title>
6+
<title>Readme, branch and wireframe</title>
77
<link rel="stylesheet" href="style.css" />
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
12-
<p>
13-
This is the default, provided code and no changes have been made yet.
14-
</p>
11+
12+
<h1>Readme, branch and wireframe</h1>
13+
<p>Brief definitions</p>
1514
</header>
1615
<main>
16+
<!-- Featured Article -->
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
20-
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
23-
</p>
24-
<a href="">Read more</a>
18+
<img src="https://docs.github.com/assets/cb-2058/mw-1440/images/help/branches/pr-retargeting-diagram1.webp" alt="Branch image" />
19+
<h2>Branch</h2>
20+
<p>A branch is basically a pointer to a snapshot of your code so you can experiment with it without affecting the main codebase. It isn't a full copy because repos with multiple branches could get huge. Then you can merge your changes to the main codebase. It's like a sandbox.</p>
21+
<a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read More</a>
2522
</article>
26-
</main>
23+
24+
<!-- Secondary Articles -->
25+
<article>
26+
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="Readme image" />
27+
<h2>Readme</h2>
28+
<p>A readme is particularly important on GitHub since the code is in textual form and the user may need to compile it. The readme tells you what the project is for and how to use it, amongst other things.</p>
29+
<a href="https://en.wikipedia.org/wiki/README">Read More</a>
30+
</article>
31+
32+
<article>
33+
<img src="https://support.microsoft.com/images/en-us/ae7333a6-5681-45ea-b482-e0de7c81cabd" alt="Wireframe image" />
34+
<h2>Wireframe</h2>
35+
<p>A wireframe is a sketch of a website that shows where the title, subtitles, text, pictures and buttons are going to go but without real pictures and it has dummy text.</p>
36+
</article>
37+
</main>
38+
2739
<footer>
28-
<p>
29-
This is the default, provided code and no changes have been made yet.
30-
</p>
40+
<p>Code Your Future</p>
3141
</footer>
3242
</body>
3343
</html>

0 commit comments

Comments
 (0)