-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex-without-styling.html
168 lines (154 loc) · 4.14 KB
/
index-without-styling.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en_US">
<head>
<meta charset="UTF-8" />
<title>HTML i CSS - Intro</title>
</head>
<body>
<!-- SECTION 1 -->
<section>
<div>
<h1>Paper <span>Cups</span></h1>
<h2>Best paper cups ever!</h2>
<p>
Lorem ipsum dolor sit amet consectetur <strong>Paper Cups</strong>,
adipisicing elit.<br />Delectus consequuntur harum ut aut qui, facere
accusantium!
</p>
<a href="#"><span>$5</span> BUY NOW</a>
<div>
<img src="./images/cups.png" alt="Cups" />
</div>
</div>
</section>
<!-- SECTION 2 -->
<section>
<div>
<h2>PAPER CUP</h2>
<h3>HQ Materials</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing
<a href="#">elit</a>. Totam ipsa beatae explicabo sapiente hic
deleniti, harum dolor qui eaque atque ipsum cupiditate, nihil
consequatur fuga, fugiat mollitia voluptates quis quibusdam.Nesciunt
vel accusantium dolor accusamus, dolores hic a corrupti veniam,
dolorem quae culpa iste magnam tempora repellat impedit alias.
Blanditiis tempora temporibus eveniet eligendi quam recusandae odit
dolore corrupti itaque!
</p>
</div>
</section>
<!-- SECTION 3 -->
<section>
<div>
<img src="./images/cups.png" alt="Cups" />
</div>
<div>
<h4>See what's included</h4>
<ul>
<li>Changeable lid color</li>
<li>Changeable cup color</li>
<li>Changeable cup label via smart object</li>
<li>On/off shadows</li>
<li>On/off specular</li>
<li>Changeable background</li>
<li>High resolution 3000 x 1875px</li>
</ul>
<a href="#"><span>$5</span> BUY NOW</a>
</div>
</section>
<!-- SECTION 4 -->
<section>
<div>
<h2>REQUIREMENTS</h2>
<h3>Adobe Photoshop</h3>
<img
src="./images/logo-photoshop.png"
alt="Photoshop logo"
width="200"
height="200"
/>
</div>
</section>
<!-- SECTION 5 -->
<section>
<div>
<h2>FEATURES</h2>
<h3>We are here for you</h3>
<div>
<div>
<img
src="./images/column-1.jpg"
alt="Photoshop UI"
width="180"
height="180"
/>
<h5>ORGANIZED LAYERS</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Expedita
sit possimus ipsa.
</p>
</div>
<div>
<img
src="./images/column-2.jpg"
alt="Photoshop UI"
width="180"
height="180"
/>
<h5>SMART OBJECT</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Expedita
sit possimus ipsa.
</p>
</div>
<div>
<img
src="./images/column-3.jpg"
alt="Photoshop UI"
width="180"
height="180"
/>
<h5>TRANSPARENT BG</h5>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Expedita
sit possimus ipsa.
</p>
</div>
</div>
</div>
</section>
<!-- SECTION 6 -->
<footer>
<div>
<p>Copyright © 2021</p>
<div>
<a href="#">
<img
src="./images/icon-facebook.png"
alt="Facebook icon"
width="25"
height="25"
/>
</a>
<a href="#">
<img
src="./images/icon-youtube.png"
alt="YouTube icon"
width="25"
height="25"
/>
</a>
<a href="#">
<img
src="./images/icon-twitter.png"
alt="Twitter icon"
width="25"
height="25"
/>
</a>
</div>
</div>
</footer>
</body>
</html>