-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScript.html
More file actions
46 lines (43 loc) · 1.42 KB
/
Script.html
File metadata and controls
46 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/alignment.css">
</head>
<body>
<div class="container">
<header>
<a href="#"><img src="images/logo.png" alt="logo" ></a>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">News</a></li>
<li><a href="#">About</a></li>
</ul>
</header>
<div class="content">
<div class="text">
<h2>iphone 13 pro max</h2>
<p>Lorem ipsum dolor sit, amet
consectetur adipisicing elit.
Sed ea expedita inventore in?</p>
<a href="">All Products</a>
</div>
<div class="photo">
<img class="img" src="images/0.png" alt="iphone">
</div>
</div>
<div class="icons">
<img src="images/0.png" alt="iphone" data-color="#c49419">
<img src="images/1.png" alt="iphone" data-color="#afcde7">
<img src="images/2.png" alt="iphone" data-color="#454544">
<img src="images/3.png" alt="iphone" data-color="#d1b07b">
<img src="images/4.png" alt="iphone" data-color="#c32929">
</div>
</div>
<script src="interactive.js"></script>
</body>
</html>