-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (100 loc) · 4.32 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
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
100
101
102
103
104
<html>
<head>
<title>SIT725 Prac 5 </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" >
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="nav-wrapper navbar-size">
<a href="#" class="brand-logo"><img class="user-image-size" src="Image/movie-icon.png"></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a target="_blank" href="https://www.google.com">Google</a></li>
</ul>
</div>
</nav>
<main class="main-body">
<div class="container">
<div class="row">
<div class="col s12 center-align">
<style>
h1 {
font-weight: bold;
}
</style>
<h1 id="heading">Christopher Nolan Film Festival</h1>
<style>
.flow-text {
text-align: center;
}
</style>
<p class="flow-text">Forget your troubles at this weekend-long festival of Christopher Nolan's cerebral, nonlinear films, which just make sense on a gigantic IMAX screen.
Film's lineup includes Tenet, Inception, Interstellar, and The Dark Knight, so you might have a few opinions to share on Letterboxd afterward, but we can guarantee you won't be bored.
</p>
</div>
<div class="col s12 center-align">
<img class="materialboxed materialboxed-image" src="Image/nolan_graphic.jpg">
</div>
<div class="col s12 center-align">
<a class="waves-effect waves-light btn click-me-button modal-trigger" id="clickMeButton" data-target="modal1"><i class="material-icons left">auto_fix_high</i>Click Me</a>
<p>For booking seats click here</p>
</div>
</div>
<div class="row" id="card-section">
<div class="col s4 center-align">
<div class="card medium">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="Image/inception.jpg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Inception<i class="material-icons right">more_vert</i></span>
<p><a href="#">Action.Adventure.Sci-Fi</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Inception<i class="material-icons right">close</i></span>
<p class="card-text">A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O., but his tragic past may doom the project and his team to disaster.</p>
</div>
</div>
</div>
</div>
</div>
<div id="modal1" class="modal modal-fixed-footer">
<div class="row modal-content">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input placeholder="Placeholder" id="title" type="text" class="validate">
<label for="title">Title</label>
</div>
<div class="input-field col s6">
<input id="subTitle" type="text" class="validate">
<label for="subTitle">Subtitle</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="path" type="text" class="validate">
<label for="path">path</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="description" type="text" class="validate">
<label for="description">description</label>
</div>
</div>
<div class="row">
<div class="input-field col s12 center-align">
<a class="waves-effect waves-light btn" id="formSubmit">submit</a>
</div>
</div>
</form>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>