-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
93 lines (78 loc) · 3.71 KB
/
about.php
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 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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- nav start -->
<?php include 'navbar.php'; ?>
<!-- nav End -->
<div class="jumbotron">
<h1 class="display-4">Hello, Viewer...</h1>
<p class="lead">This is a simple user-friendly webiste component for calling extra attention to featured content or information.</p>
<hr class="my-1">
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
<p class="lead">
<a class="btn btn-outline-primary text-center btn-lg " href="#" role="button">Learn more</a>
</p>
</div>
<!-- about section banana hai-->
<section class="">
<div class="" >
<h2 class="text-center font-weight-bolder mb-5 text-warning bg-dark">About Us</h2>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-12 col-lg-6">
<img src="image/shop.jpg" style="margin-left:30%;" height="80%" width="60%" alt="">
</div>
<div class="col-md-6 col-12 col-lg-6">
<h3 class="font-weight-bold display-4 text-primary">I'm Rahul Gupta :)</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus laboriosam fugiat minus eaque animi esse doloribus earum vitae. Dolor quibusdam sed assumenda veritatis!</p>
<a href="about.php" class="btn btn-outline-primary">Check More</a>
<hr>
<p class="lead"><b>Phone: </b>+91- 758 080 3042</p>
<p class="lead"><b>Gmail: </b><a href="[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</section>
<!-- contact Start -->
<section class="bg-success text-white">
<div class="col-12 text-center">
<h3 class="display-4 font-weight-bold py-2"><u>Contact Us</u></h3>
</div>
<div class="w-50 m-auto">
<form action="userinfo.php" method="post" class="action">
<div class="form-group">
<label for="user">Username</label>
<input type="text" name="user" class="form-control" id="user" autocomplete="off">
</div>
<div class="form-group">
<label for="email">Email Id</label>
<input type="email" name="email" class="form-control" id="email" autocomplete="off">
</div>
<div class="form-group">
<label for="mobile">Mobile No.</label>
<input type="number" name="mobile" class="form-control" id="mobile" autocomplete="off">
</div>
<div class="form-group">
<label for="message">Message</label> <textarea name="message" id="message" class="form-control"></textarea>
</div>
<button type="submit" class="btn btn-outline-dark mb-2">SUBMIT</button>
</form>
</div>
</section>
<!-- contact End -->
<footer>
<p class="p-3 bg-dark text-white text-center">prakashkiranastore©copyright</p>
</footer>
</body>
</html