-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (76 loc) · 2.42 KB
/
index.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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Flip Cards Of Products" />
<meta
name="keywords"
content="Flip , Cards , Products , HTML5 , CSS3 , Responsive"
/>
<meta name="author" content="Khazri" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flip Cards - Products</title>
<link
rel="shortcut icon"
href="https://seeklogo.com/images/P/pages-jaunes-logo-2766082098-seeklogo.com.png"
type="image/x-icon"
/>
<!--Link CSS-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<img
src="https://seeklogo.com/images/P/pages-jaunes-logo-2766082098-seeklogo.com.png"
alt="logo"
/>
<p><span>lorem </span>Ipsum</p>
</header>
<h1>Products</h1>
<main class="cards">
<section class="card">
<section class="card-face">
<div class="product-image im-1" data-price="100 DT"></div>
</section>
<section class="card-back">
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Maxime
dolore voluptatibus facilis quisquam voluptas dolordolore
voluptatibus dolore .
</p>
<button>buy now</button>
</section>
</section>
<section class="card">
<section class="card-face">
<div class="product-image im-2" data-price="150 DT"></div>
</section>
<section class="card-back">
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Maxime
dolore voluptatibus facilis quisquam voluptas dolordolore
voluptatibus dolore .
</p>
<button>buy now</button>
</section>
</section>
<section class="card">
<section class="card-face">
<div class="product-image im-3" data-price="200 DT"></div>
</section>
<section class="card-back">
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Maxime
dolore voluptatibus facilis quisquam voluptas dolordolore
voluptatibus dolore .
</p>
<button>buy now</button>
</section>
</section>
</main>
<footer>
<p>© 2023 - <span>lorem </span> - ipsum</p>
</footer>
</body>
</html>