-
Notifications
You must be signed in to change notification settings - Fork 0
/
wireframe.html
117 lines (94 loc) · 3.48 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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>Wireframe 2 HTML</title>
</head>
<body>
<header>
<div id="logo-box">
<img src="http://placeimg.com/75/75/animals" alt="Random animal image">
</div>
<nav>
<a href="index.html">Home</a>
<a href="#">Page1</a>
<a href="#">Page2</a>
<a href="#">about</a>
</nav>
</header>
<main>
<div id="banner-box">
<section class="banner">
<img src="http://placeimg.com/1000/300/animals" alt="Random animal image">
<h2>Banner title 1</h2>
<p>Describing banner one text.</p>
</section>
<section class="banner">
<img src="http://placeimg.com/1000/300/animals" alt="Random animal image">
<h2>Banner title 2</h2>
<p>Describing banner two text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 1</h2>
<p>Describing product one text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 2</h2>
<p>Describing product two text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 3</h2>
<p>Describing product three text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 4</h2>
<p>Describing product four text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 5</h2>
<p>Describing product five text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 6</h2>
<p>Describing product six text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 7</h2>
<p>Describing product seven text.</p>
</section>
</div>
<div id="Product-gallery">
<section class="product">
<img src="http://placeimg.com/250/250/animals" alt="Random animal image">
<h3>Product title 8</h2>
<p>Describing product eight text.</p>
</section>
</div>
</main>
<footer>
</footer>
</body>
</html>