forked from theirnameissam/browser-demo
-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
65 lines (65 loc) · 1.75 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Browser</title>
<link rel="stylesheet" href="css/css/font-awesome.css">
<link rel="stylesheet" href="css/main.css">
<style>
webview {
width: 100%;
height: 100%;
}
</style>
</head>
<body id="browser">
<nav id="navigation">
<div id="back">
<i class="fa fa-arrow-left" aria-hidden="true"></i>
</div>
<div id="forward">
<i class="fa fa-arrow-right" aria-hidden="true"></i>
</div>
<div id="refresh">
<i class="fa fa-refresh" aria-hidden="true"></i>
</div>
<div id="omnibox">
<input type="text" id="url">
</div>
<div id="fave">
<i class="fa fa-star" aria-hidden="true"></i>
</div>
<div id="fave-popup" data-state="closed">
</div>
<div id="list">
<i class="fa fa-list" aria-hidden="true"></i>
</div>
<div id="console">
<i class="fa fa-terminal" aria-hidden="true"></i>
</div>
</nav>
<!--<div id="tabs">
<a class="tab">Titlegekn ekjng eknjg kegn engk
<div class="close">
<i class="fa fa-times"></i>
</div>
</a>
<a class="tab">Titlegekn ekjng eknjg kegn engk
<div class="close">
<i class="fa fa-times"></i>
</div>
</a>
<a class="tab">Titlegekn ekjng eknjg kegn engk
<div class="close">
<i class="fa fa-times"></i>
</div>
</a>
</div>-->
<div id="views">
<webview id="view" class="page" src="http://www.google.com/" autosize="on"></webview>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>