-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst36p.html
38 lines (37 loc) · 1.02 KB
/
first36p.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
<!DOCTYPE html>
<!--<html lang="en">-->
<head>
<meta charset="UTF-8">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<title>React! React! React!</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
</head>
<style>
#container {
padding: 50px;
background-color: #EEE;
}
#container h3 {
font-size: 144px;
font-family: sans-serif;
color: #0080A8;
}
</style>
<body>
<div id="container"></div>
<script type="text/babel">
var destination = document.querySelector("#container");
ReactDOM.render(
<div>
<h3><i>Batman</i></h3>
<h3><i>Iron Man</i></h3>
<h3><i>Nicolas cage</i></h3>
<h3><i>Mega Man</i></h3>
</div>,
destination
);
</script>
</body>
</html>