forked from CodeYourFuture/Module-Onboarding
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 2.75 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 2.75 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">
<meta name="description" content="Learn how to transform a wireframe into responsive HTML and CSS web code,">
<title>Wireframe to Web Code</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<header class="header">
<h1>WIREFRAME TO WEB CODE</h1>
<p>A wireframe to web code process is the transformation of a visual layout plan into actual, functional web pages. <br> It's the process of turning a static design blueprint into a working website or a app.</p></p>
</header>
<article>
<img srcset="img/codee.webp" alt="code" sizes="(max-width: 600px) 480px, 800px" fetchpriority="high"/>
<div class="article">
<h2>What's the purpose of a Wireframe</h2>
<p>A wireframe to web code process is the transformation of a visual layout plan into actual, functional web pages. <br>It's the process of turning a static design blueprint into a working website or app.</p>
<a href="https://www.productplan.com/glossary/wireframe/" target="_blank" rel="noopener noreferrer">Read more about Wireframes</a>
</div>
</article>
</section>
</header>
<main>
<section class="articles-container">
<article>
<img src="img/readme.webp" alt="Readme" fetchpriority="high">
<h2>What is the purpose of a README file?</h2>
<p>A README file is a "manual" for your project. It's the first file someone should read. It explains what the project is, how to install and use it, and how to contribute.</p>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes" target="_blank" rel="noopener noreferrer">Read more about README file</a>
</article>
<article>
<img src="img/forkgit.webp" alt="forkgit" fetchpriority="high">
<h2>What is a Git Branch?</h2>
<p>A Git branch is an independent "copy" of your project you can work on in isolation. It lets you develop new features (like a 'bio-page') without affecting the main 'main' version of your code.</p>
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell" target="_blank" rel="noopener noreferrer">Read more about Git-Branch</a>
</article>
</section>
</main>
<footer>
<p>This project was done by Ifeyinwa_Ofulue a.k.a Dresumewill</p>
<p>© 2025 My Wireframe to Web Code</p>
</footer>
</body>
</html>