-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCard forBook.html
More file actions
93 lines (86 loc) · 1.97 KB
/
Copy pathCard forBook.html
File metadata and controls
93 lines (86 loc) · 1.97 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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css" media="all">
* {
margin: 0;
}
body {
padding: 2rem;
}
#main {
max-width: 300px;
display: flex;
flex-direction: column;
height: 300px;
padding: 10px;
background: #E1F5FE;
color: #0277BD;
border: 2px solid #fff;
border-radius: 10px;
}
@@media (min-width: 400px) {
#main {
max-width: 1200px;
}
}
.cover {
display: grid;
flex: 1;
width: 100%;
grid-template-columns: 1.3fr 1fr;
height: 300px;
}
.description {
}
.img {
background: #29B6F6;
height: 200px;
margin-top: 20px;
}
.bottom {
height: 30px;
padding: 10px;
text-align: center;
}
.bottom button {
width: 100%;
height: 100%;
border: 2px solid #03A9F4;
border-radius: 12px;
}
h1 {
color: #01579B;
margin-bottom: 10px;
font-size: 2.5em;
}
p {
font-size: 0.8em;
}
</style>
<title>Card</title>
</head>
<body>
<div id="main">
<div class="cover">
<div class="description">
<h1>Religion Of God</h1>
<h5>Author</h5>
<h6>His Holiness Gohar Shahi </h6>
<p>Religion of God Is the Ultimate Gift of His Holiness Gohar Shahi to lover of
GOD. Regardless of Any religion you can reach God thorough
spirituality
</p>
</div>
<div class="img">
<img src="" alt="" />
</div>
</div>
<div class="bottom">
<button>Download</button>
</div>
</div>
</body>
</html>