-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwireframe.html
More file actions
87 lines (86 loc) · 3.27 KB
/
wireframe.html
File metadata and controls
87 lines (86 loc) · 3.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<div class = 'logo-box'>
<img src='https://placeimg.com/75/75/animals'
alt='logo'>
</div>
<nav>
<a href='index.html'>Home</a>
<a href='#'>Page 1</a>
<a href='#'>Page 2</a>
<a href='#'>Page 3</a>
</nav>
</header>
<main>
<div id='banner-box'>
<section class='banner'>
<img src='https://placeimg.com/1000/300/animals' alt='banner image desc'>
<h2>Banner 1 Title</h2>
<p>Banner 1 text paragraph</p>
</section>
<section class='banner'>
<img src='https://placeimg.com/1000/300/animals' alt='banner image desc'>
<h2>Banner 2 Title</h2>
<p>Banner 2 text paragraph</p>
</section>
<section class='banner'>
<img src='https://placeimg.com/1000/300/animals' alt='banner image desc'>
<h2>Banner 3 Title</h2>
<p>Banner 3 text paragraph</p>
</section>
</div>
<div id='product-gallery'>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 1 Title</h2>
<p>Product 1 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 2 Title</h2>
<p>Product 2 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 3 Title</h2>
<p>Product 3 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 4 Title</h2>
<p>Product 4 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 5 Title</h2>
<p>Product 5 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 6 Title</h2>
<p>Product 6 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 7 Title</h2>
<p>Product 7 text paragraph</p>
</section>
<section class='product'>
<img src='https://placeimg.com/250/250/animals' alt='banner image desc'>
<h2>Product 8 Title</h2>
<p>Product 8 text paragraph</p>
</section>
</div>
</main>
<footer>
</footer>
</body>
</html>