-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
99 lines (96 loc) · 3.75 KB
/
index.php
File metadata and controls
99 lines (96 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome</title>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
</head>
<style type="text/css">
.nav-item{
margin-left: 20px;
}
body{
background-image: url(pattern3.png);
}
.text{
text-align:center;
padding-top:50px;
font-family: 'Balsamiq Sans', cursive;
font-size:400%
}
</style>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top">
<a class="navbar-brand" href="index.php"><img src="https://cdn1.iconfinder.com/data/icons/seo-icons-5/96/Coding-512.png" width="40px" style="margin-right: 15px;">Code Collector</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="Signup.php">Signup</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Signin.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Verification.php">Verification</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.php">About</a>
</li>
</ul>
</div>
</nav>
<div class="text">
<p>Get back to Code!!</p>
<p>Store and manage your <span style="color:orange">Codes</span> at one place.</p>
</div>
<div class="d-flex justify-content-center">
<div class="jumbotron" style="width:800px;text-align:center">
<h1 class="display-4">Hello, Coders!</h1>
<p class="lead">Happy to see you here.</p>
<hr class="my-4">
<p>Use this platform to make your personal code room.</p>
<a class="btn btn-primary btn-lg" href="Signup.php" role="button">Sign up</a>
</div>
</div>
<div class="d-flex justify-content-center">
<div style="margin-top:100px;margin-bottom:50px;width:700px;height:400px" >
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="wall1.jpg" class="d-block w-100" alt="..." height="400px">
</div>
<div class="carousel-item">
<img src="wall.jpg" class="d-block w-100" alt="..." height="400px">
</div>
<div class="carousel-item">
<img src="wall2.jpg" class="d-block w-100" alt="..." height="400px">
</div>
<div class="carousel-item">
<img src="img22.png" class="d-block w-100" alt="..." height="400px">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</body>
</html>