-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 1.95 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 1.95 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
<!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>
<SECTION CLASS="articles">
<ARTCLE>
<img src="https://www.nicepng.com/png/full/357-3576824_this-free-icons-png-design-of-readme-document.png" alt="" style="width: 150px" />
<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>
<ARTCLE>
<img src="https://www.svgrepo.com/show/257406/wireframe.svg" alt="" style="width:150px"/>
<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>
<ARTCLE>
<img src="https://www.svgrepo.com/show/327279/git-branch.svg" alt="" style="width:150px"/>
<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>
</section>
</main>
<footer>
<p>created by CYF with some changes made by Djebsoft</p>
</footer>
</body>
</html>