forked from CodeYourFuture/Module-Onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (44 loc) · 1.46 KB
/
index.html
File metadata and controls
56 lines (44 loc) · 1.46 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
<!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>
<center>Wireframe</center>
</h1>
<p>
<center>An article about webpages and their purpose</center>
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="an image depicting wireframe " />
<h2>READme</h2>
<p>
The purpose of a READme file is to provide information about a project, including how to instructions and tasks to be done.
<a href="">Read more</a>
</article>
<article>
<img src="placeholder.svg" alt="an image depicting wireframe " />
<h2>Wireframe</h2>
<p>
A wireframe is a visual guide that represents the skeletal framework of a website or application, outlining the layout and structure of its content and functionality.
<a href="">Read more</a>
</article>
<article>
<img src="placeholder.svg" alt="an image depicting wireframe " />
<h2>Git branch</h2>
<p>A branch in a git, is a perosnal workspace to work on tasks independently.</p>
<a href="">Read more</a>
</main>
<footer>
<p> <center>Adedolapo January 2026</center>
</p>
</footer>
</body>
</html>