-
-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.56 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe task</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe task</h1>
<p>what is wireframe, readme file and git branch ?</p>
</header>
<main>
<article>
<img src="readme_image.png" alt=""/>
<h2>Readme File</h2>
<p>a readme file demonstrates what the project does, why it is useful and how can a user get started with it.</p>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes"
target="_self">Read more</a>
</article>
<article>
<img src="wireframe_image.png" alt=""/>
<h2>wireframe</h2>
<p>a wireframe is a simple visual guide (blue print) that represents the skeletal framework of a webpage.</p>
<a href="https://github.com/dwyl/learn-wireframing/blob/master/README.md" target="_self">Read more</a>
</article>
<article>
<img src="branch_image.png" alt=""/>
<h2>git branch</h2>
<p>a git branch is a separate independent copy of the source code within a version control system.</p>
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches"
target="_self">Read more</a>
</article>
</main>
<footer>
<p>created by CYF with some changes made by Djebsoft</p>
</footer>
</body>
</html>