-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.42 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.42 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
<!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">
<title>.:: ⚙️ WorkShop JavaScript ⚙️ ::.</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/logo-home.png" alt="Home">
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="./views/react.html">React</a></li>
<li><a href="./views/javascript.html">JavaScript</a></li>
<li><a href="./views/lifecycle.html">Life Cycle</a></li>
</ul>
</div>
</nav>
<section class="container">
<div class="row">
<div class="col s12 demo">
<h1 class="title-demo"> WebComponents </h1>
<img src="./assets/init.png" class="img-demo" alt="init">
</div>
</div>
</section>
</main>
</body>
</html>