-
Notifications
You must be signed in to change notification settings - Fork 0
/
wireframe.html
52 lines (52 loc) · 2.07 KB
/
wireframe.html
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
<!DOCTYPE html>
<html>
<head>
<meta charsert="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>W02 CSE111 Wireframe Learning Practice</title>
<meta name="Author" content="Nicholas Oblitey Commey">
<meta name="description" content="Practicing how to read or build wireframes">
<link href="">
</head>
<body>
<header>
<div>
<img src="images\logo.png">
</div>
<nav>
<a href="">Home</a>
<a href="">Link</a>
<a href="">Link</a>
<a href="">Link</a>
</nav>
</header>
<main>
<div id="banner-box">
<section class="banner">
<img src="images\profile.jpg" alt="My Profile Picture">
</section>
<section>
<p>Picture of Nicholas Oblitey Commey. Courtesy, the owner</p>
</section>
</div>
<div id="products">
<section class="history">
<h1>Early Beginnings</h1>
<p>From an early age, I love to be creative. I imagine and sketch down my ideas.<br>
After many years, I came to realize that Software Development is the best for me.<br>
It allows me to apply much of my skills to design using the computer to solve real world challenges</p>
</section>
<section class="history">
<img src="images\child-drawing.png" alt="A picture of a creative child">
</section>
<section class="Current-Skills">
<img src="images\my-own-code.png" alt="Apicture of My own code written in HTML">
</section>
<section class="current-skill">
<p>I am able to write programs using;<br>HTML✔<br>CSS✔<br>Python✔</p>
</section>
</div>
</main>
<footer></footer>
</body>
</html>