-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.48 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
<!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>Psudo Class</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<section class="container text-center">
<h1 class="text-center p-5">PSUDO CLASS</h1>
<h2>Allah is the only creator in the </h2>
</section>
<section class="container mt-5">
<h3 class="title-section">Quran & Hadith Quotes</h3>
<blockquote>Allah Almighty says in the Noble Quran: O you who believe! Respond to (the call of) Allah and His Messenger when he calls you to that which gives you life. - Quran, 8:24</blockquote>
</section>
<section class="container mt-5">
<h3 class="hadith-section">Hadith Quotes</h3>
<blockquote>Prophet (PBUH) said in Hadith: Whoever supplicates Allah to exalt for me, Allah would exalt him ten times.(Muslim)</blockquote>
<p class="required">Full Name: <input type="text" placeholder="Your Name"></p>
<p class="required">Email Address: <input type="email" placeholder="Your Email Address"></p>
<p class="required">Phone Number: <input type="tel" placeholder="Your Phone No"></p>
<p>Message: <textarea name="message" style="width:200px; height:100px;"></textarea></p>
<input type="submit" value="SEND MESSAGE">
</section>
</body>
</html>