Skip to content

Commit bd27467

Browse files
committed
Add README, wireframe, and Git branch articles with images
1 parent c44123d commit bd27467

3 files changed

Lines changed: 38 additions & 9 deletions

File tree

Wireframe/git-branch.png

38.6 KB
Loading

Wireframe/index.html

Lines changed: 38 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,56 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Wireframe</title>
77
<link rel="stylesheet" href="style.css" />
88
</head>
9+
910
<body>
1011
<header>
1112
<h1>Wireframe</h1>
12-
<p>
13-
This is the default, provided code and no changes have been made yet.
14-
</p>
13+
<p>Learn about README files, wireframes, and Git branches.</p>
1514
</header>
15+
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img
19+
src="readme.png"
20+
alt="Illustration promoting the creation of an effective README file"
21+
/>
22+
<h2>What is a README File?</h2>
23+
<p>
24+
A README file explains what a project does, how to install it, how to
25+
use it, and any important information developers need. It is usually
26+
the first file people read when viewing a project.
27+
</p>
28+
<a href="https://www.makeareadme.com/">Read more</a>
29+
</article>
30+
31+
<article>
32+
<img src="wireframe.png" alt="Wireframe showing a webpage layout" />
33+
<h2>What is a Wireframe?</h2>
34+
<p>
35+
A wireframe is a digital diagram that shows the skeleton of a website.
36+
It strips away visual elements like colors, fonts, and images to focus
37+
entirely on where headers and content blocks live.
38+
</p>
39+
<a href="https://balsamiq.com/blog/what-are-wireframes/">Read more</a>
40+
</article>
41+
42+
<article>
43+
<img src="git-branch.png" alt="Illustration of branching in Git" />
44+
<h2>What is a Git Branch?</h2>
2045
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
46+
A branch in Git is an independent line of development. Branches allow
47+
developers to work on new features or fixes without affecting the main
48+
project.
2349
</p>
24-
<a href="">Read more</a>
50+
<a
51+
href="https://book.the-turing-way.org/reproducible-research/vcs/vcs-git-branches/"
52+
>Read more</a
53+
>
2554
</article>
2655
</main>
2756
<footer>

Wireframe/readme.png

209 KB
Loading

0 commit comments

Comments
 (0)