-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbrowser.html
More file actions
21 lines (21 loc) · 807 Bytes
/
browser.html
File metadata and controls
21 lines (21 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="./react.js"></script>
<script src="./JSXTransformer.js"></script>
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/font-awesome.css">
<link rel="stylesheet" href="./css/browser.css">
<link rel="stylesheet" href="./css/browser-tabs.css">
<link rel="stylesheet" href="./css/browser-navbar.css">
<link rel="stylesheet" href="./css/browser-page.css">
</head>
<body>
<div id="browser-chrome"></div>
<script type="text/jsx" src="./browser-tabs.jsx"></script>
<script type="text/jsx" src="./browser-navbar.jsx"></script>
<script type="text/jsx" src="./browser-page.jsx"></script>
<script type="text/jsx" src="./browser.jsx"></script>
</body>
</html>