-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.79 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
<!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>Responsive Cards - HTML5 & CSS3 (No Framework)</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="container">
<!-- Title -->
<h1>Responsive HTML5 & CSS3 Cards</h1>
<h3>No Framework</h3>
<!-- Image Cards Section -->
<div class="img-card-sec">
<!-- Style One -->
<div class="card card-one">
<a href="#"><img src="./src/blank_blue.jpg" alt="blank blue image" /></a>
<div class="content-sec">
<a href="#"><h4>Simple Card - Style I</h4></a>
<p>
This is a simple card, It just has an image, heading and a short
description.
</p>
</div>
</div>
<!-- Style Two -->
<div class="card card-two">
<a href="#"><img src="./src/blank_blue.jpg" alt="blank blue image" /></a>
<div class="content-sec">
<a href="#"><h4>Simple Card - Style II</h4></a>
<p>
This is a card style 2, It has an image, heading, a short
description and an action button.
</p>
<button>know more</button>
</div>
</div>
<!-- Style Three -->
<div class="card-three">
<img src="" alt="" />
<div class="content-sec"></div>
</div>
</div>
</div>
</body>
</html>