-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlifecycle.html
More file actions
40 lines (40 loc) · 1.86 KB
/
Copy pathlifecycle.html
File metadata and controls
40 lines (40 loc) · 1.86 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
<!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="icon" href="../assets/favicon.png" type="image/x-icon">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="../src/css/style.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script type="text/javascript" src="../dist/dist-life-component.js"></script>
<title>.:: ⚙️ WorkShop JavaScript - LifeCycle ⚙️ ::.</title>
</head>
<body class="grey darken-4">
<main>
<nav class="blue-grey darken-4">
<div class="nav-wrapper">
<a href="#" class="brand-logo">
<img src="../assets/cycle.png" alt="JavaScript">
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="../">Home</a></li>
<li><a href="../views/react.html">React</a></li>
<li><a href="../views/javascript.html">JavaScript</a></li>
</ul>
</div>
</nav>
<section class="container">
<div class="row" id="demo">
<button class="waves-effect waves-light btn purple darken-3 add" disabled="">Add custom-square to DOM</button>
<button class="waves-effect waves-light btn purple darken-3 update">Update attributes</button>
<button class="waves-effect waves-light btn purple darken-3 remove">Remove custom-square from DOM</button>
<custom-square l="100" c="red"></custom-square>
</div>
</section>
</main>
</body>
</html>