-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.php
124 lines (57 loc) · 2.87 KB
/
test2.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php require('phpopen.php');?>
<!DOCTYPE html>
<html lang="en" class="itemcontainer" style="height:auto;overflow-y: scroll !important;" >
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="x-ua-compatible" content="IE=10">
<meta name="viewport" content="width=device-width, initial-scale=1 ,minimum-scale =1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="icon" href="images/sp2.png" type="image/png" />
<link href="tools/css/bootstrap.min.css" rel="stylesheet">
<link href="tools/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="tools/css/sn.css" rel="stylesheet">
<link href="tools/css/subcss/start.css" rel="stylesheet">
<link rel="stylesheet" href="tools/css/fontawesome/css/all.css">
<link href="tools/css/slick.css" rel="stylesheet">
<script src="tools/react/react.min.js"></script>
<script src="tools/react/react-dom.min.js"></script>
<script src="tools/react/browser.min.js"></script>
<link rel="stylesheet" href="tools/fontx/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font2/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font3/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font4/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font5/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font6/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="tools/font7/stylesheet.css" type="text/css" charset="utf-8" />
</head>
<body id="gangbody">
<br>
<div id="superman" style="padding:0px;"> </div>
<script type="text/babel">
var Movie = React.createClass({
render :function(){
return(
<div>
<h1>{this.props.title}</h1>
<h2>{this.props.genre}</h2>
</div>
);}
});
ReactDOM.render(
<div>
<Movie title="Game of Thrones" genre="Epic Adventure" />
<Movie title="Spider Man" genre="Action Adventure" />
</div>, document.getElementById('superman'));
</script>
</body>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="tools/js/bootstrap.min.js"></script>
<script src="tools/js/jquery-3.3.1.min.js"></script>
</html>