-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 2.68 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Bootstrap Theme</title>
</head>
<style>
body{
background:linear-gradient(rgba(104, 191, 226, 0.7),rgba(70, 5, 248, 0.7));
}
nav{
background: linear-gradient(to right bottom ,rgba(233, 27, 27, 0.7),rgba(148, 26, 247, 0.7));
}
.jumbotron{
background: linear-gradient(to right bottom ,rgba(253, 4, 4, 0.7),rgba(140, 0, 255, 0.7));
}
</style>
<body>
<!-- START HERE -->
<nav class="navbar navbar-expand-sm navbar-light bg-light mb-3">
<div class="container">
<a class="navbar-brand" href="index.html">Mymovieapp😊</a>
</div>
</nav>
<div class="container ">
<!--#####################START HERE######################-->
<!-- JUMBOTRON -->
<div class="jumbotron text-center p-2">
<h1 class="display-4 ">Welcome To Mymovieapp😊</h1>
<form>
<input class="form-control p-3 mt-4 " type="text" placeholder="ENTER MOVIE NAME" style="border-radius: 25px; background-color: rgb(240, 219, 234);">
<button class="btn btn-primary mt-3 btn-lg mb-2 searchbtn" style="border-radius:25px ;">Search</button>
</form>
</div>
</div>
<div class="container mb-5">
<div class="card-columns">
</div>
</div>
<script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="index.js"></script>
<script>
// Get the current year for the copyright
$('#year').text(new Date().getFullYear());
</script>
</body>
</html>