-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab20b-exercise01.html
41 lines (33 loc) · 1.24 KB
/
lab20b-exercise01.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lab 20b</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script>
<!--The React JS libraries -->
<script src="https://fb.me/react-15.2.1.js"></script>
<script src="https://fb.me/react-dom-15.2.1.js"></script>
<!--Initially, we will use the babel run-time library to convert JSX in the browser -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.js"></script>
</head>
<body>
<main class="container">
<section class="hero is-primary is-small">
<div class="hero-body">
<div class="container">
<h1 class="title">
React Tutorial
</h1>
<h2 class="subtitle">
Defining a component using JSX
</h2>
</div>
</div>
</section>
<section id='react-container' class="content box ">
</section>
</main>
</body>
</html>