-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
48 lines (48 loc) · 2.19 KB
/
test.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SIT 725 Prac 3</title>
<meta name="description" content="basic template for SIT 725 Prac 3">
<meta name="author" content="SitePoint">
<meta property="og:title" content="SIT 725 Prac 3">
<meta property="og:type" content="website">
<meta property="og:description" content="basic template for SIT 725 Prac 3">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Custom Style Sheet-->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav>
<div class="nav-wrapper navbar-size">
<a href="#" class="brand-logo"><img class="user-image-size" src="images/user-image.png" /></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a target="_blank" href="https://www.linkedin.com/in/navit-choudhary-5133b9104/">LinkedIn</a></li>
</ul>
</div>
</nav>
<main class="main-body">
<div class="container">
<div class="row">
<div class="col s12 center-align">
<h1 id="heading">Welcome to SIT 725 Week 3</h1>
<p class="flow-text">This is a demo application that tries to use a few components from materialize and through this practical we try to have some fun with Materialize and its components</p>
</div>
<div class="col s12 center-align">
<img class="materialboxed materialboxed-image" src="images/livedemo.png">
</div>
<div class="col s12 center-align">
<a class="waves-effect waves-light btn click-me-button" id="clickMeButton"><i class="material-icons left">auto_fix_high</i>Click Me</a>
</div>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>