-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
80 lines (73 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montaga&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Mob Psycho 100</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.php">Mob Psycho 100</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://wall.alphacoders.com/by_sub_category.php?id=241999&name=Mob+Psycho+100+Wallpapers">
Wallpapers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-leg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<div class="jumbotron">
<h1>Shiver's Website :)</h1>
<p>Best Anime Recommendation Website</p>
</div>
<section class="my-5">
<div class="py-5">
<h2 class="text-center">About Us</h2>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<img src="image/img5.jpg" alt="mob pic" class="img-fluid">
</div>
<div class="col-lg-6 col-md-6 col-12">
<h2 class="display-4">I am Shiver.</h2>
<p class="py-3">
I am a student of Chandigarh University who is making this Mob Psycho 100 official Website for fun.
Coding and designing is something that i love to do.
Currently I'm pursuing my BE Degree in the field of Computer Science.</p>
<a href="about.php" class="btn btn-success">Read more</a>
</div>
</div>
</div>
</section>
<footer>
<p class="p-3 bg-dark text-white temp text-center">© ShiverWebsite</p>
</footer>
</body>
</html>