-
-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
67 lines (64 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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>The Utility of Definitions</h1>
<p>
And its pedagogical implications for the teaching of web development.
</p>
</header>
<main>
<article>
<img src="readme-image.png" alt="Illustration of a README document" />
<h2>What is a README file?</h2>
<p>
A README file explains what a project is, how to use it, and any
important setup instructions.
</p>
<a
href="https://www.freecodecamp.org/news/how-to-write-a-good-readme-file/"
>
Read more
</a>
</article>
<article>
<img
src="wireframe-image.png"
alt="Illustration of a website wireframe"
/>
<h2>What is a wireframe?</h2>
<p>
A wireframe is a simple plan for a webpage. It shows where the main
content, images, and sections should go before the final design is
added.
</p>
<a href="https://www.productplan.com/glossary/wireframe/">
Read more
</a>
</article>
<article>
<img
src="git-branch-image.png"
alt="Illustration of a Git branch diagram"
/>
<h2>What is a branch in Git?</h2>
<p>
A branch is a separate version of a project where developers can make
changes without affecting the main version straight away.
</p>
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">
Read more
</a>
</article>
</main>
<footer>
<p>Martim Lou 2026.</p>
</footer>
</body>
</html>