-
-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (56 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
74 lines (56 loc) · 1.69 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
68
69
70
71
72
73
74
<!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>Web Development Concepts</h1>
<p>Understanding README files, Wireframes and Git Branches</p>
</header>
<main>
<article>
<img src="images/readme.png" alt="README documentation example" />
<h2>What is a README File?</h2>
<p>
A README file explains a project. It usually contains information
about the purpose of the project, installation instructions,
usage examples and important notes for developers.
</p>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">
Read More
</a>
</article>
<article>
<img src="images/wireframe-topic.png" alt="Website wireframe layout sketch" />
<h2>What is a Wireframe?</h2>
<p>
A wireframe is a visual plan of a webpage. It helps designers
and developers organise content and layout before building
the final website.
</p>
<a href="https://www.interaction-design.org/literature/topics/wireframing">
Read More
</a>
</article>
<article>
<img src="images/branch.png" alt="Git branching workflow diagram" />
<h2>What is a Git Branch?</h2>
<p>
A Git branch is an independent line of development.
It allows developers to work on new features without
affecting the main version of a project.
</p>
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell">
Read More
</a>
</article>
</main>
<footer>
<p>Contact information and site details</p>
</footer>
</body>
</html>