-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMission6.html
57 lines (48 loc) · 1.86 KB
/
Mission6.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
<!DOCTYPE html>
<html>
<head>
<!-- Meta Starts -->
<title>Pemrograman Web A</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ini adalah website untuk contoh tutorial pada Kelas Pemrograman Web A">
<meta name="author" content="Bryan Yehuda Mannuel">
<meta name="theme-color" content="#fff" />
<!-- Meta Ends -->
<!-- Link Starts -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Link Starts -->
</head>
<body>
<br><br>
<div class="section">
<div class="container">
<div class="row center">
<div class="col s4 offset-s4">
<img class="responsive-img" src="images/Badge_ITS.png">
</div>
</div>
</div>
<div class="row center">
<div class="input-field col s4 offset-s4">
<input placeholder="Placeholder" id="first_name" type="text" class="validate">
<label for="first_name">User</label>
</div>
</div>
<div class="row center">
<div class="input-field col s4 offset-s4">
<input placeholder="Placeholder" id="password" type="password" class="validate">
<label for="first_name">Password</label>
</div>
</div>
<div class="row center">
<a class="waves-effect waves-light btn-large">button</a>
</div>
</div>
<!-- Script Starts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Script Ends -->
</body>
</html>