-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotation.html
More file actions
145 lines (114 loc) · 4.79 KB
/
quotation.html
File metadata and controls
145 lines (114 loc) · 4.79 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
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
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="resources/css/Style.css">
</head>
<body>
<div class="navbar">
<nav>
<!--<img src="resources/images/my pic.png" alt="">-->
<H1 class="logo">I<span>S</span>K</H1>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="gallery.html">PICTURE GALLERY</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="quotation.html">FAVORITE QUOTIENT</a></li>
<li><a href="contact.html">CONTACT ME</a></li>
</ul>
</nav>
<section class="grid" id="quotes-grid">
<div class="quotes">
<div class="p">
<p>“Indeed, I am near.”</p>
</div>
<div class="h2">
<h2 class="text">QURAN</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“Allah comes in between a person and his heart.”</p>
</div>
<div class="h2">
<h2 class="text">QURAN</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“The strongest among you is the one who controls his anger.”</p>
</div>
<div class="h2">
<h2 class="text">Prophet Muhammad(SAW)</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“The greatest of richness is the richness of the soul.”</p>
</div>
<div class="h2">
<h2 class="text">Prophet Muhammad(SAW)</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>"And he found you lost and guided [you]"</p>
</div>
<div class="h2">
<h2 class="text">QURAN</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>"Success is not final; failure is not fatal: It is the courage to continue that counts."</p>
</div>
<div class="h2">
<h2 class="text">Winston S. Churchill</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“Success usually comes to those who are too busy looking for it.”</p>
</div>
<div class="h2">
<h2 class="text">Henry David Thoreau</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“Don’t let yesterday take up too much of today.”</p>
</div>
<div class="h2">
<h2 class="text">Will Rogers</h2>
</div>
</div>
<div class="quotes">
<div class="p">
<p>“Goal setting is the secret to a compelling future.”</p>
</div>
<div class="h2">
<h2 class="text">Tony Robbins</h2>
</div>
</div>
</section>
<footer>
<div id="footer" class="footer-content">
<h3>I<span>S</span>K</h3>
<p>Created by Muhammad Ismail<br>Follow me on social media!</p>
<ul class="socials">
<li><a href="#" TARGET="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IskProfessional" TARGET="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/muhammad-ismail-262924195/" TARGET="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>copyright ©2021 ISK. designed by <span>Muhammad Ismail </span></p>
</div>
</footer>
</div>
</body>
</html>