-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) ยท 1.59 KB
/
index.html
File metadata and controls
44 lines (40 loc) ยท 1.59 KB
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
<!DOCTYPE HTML>
<html>
<head>
<!-- Insert this line above script imports -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>if (window.module) module = window.module;</script>
<script type="text/javascript">
$(document).ready(function() {
$("#content").load("target.html")
});
</script>
<style>
.urlbox {
position: relative;
}
.urlbox input[type="text"] {
width: 100%; /* ์ํ๋ ๋๋น ์ค์ */
height: auto; /* ๋์ด๊ฐ ์ด๊ธฐํ */
line-height : normal; /* line-height ์ด๊ธฐํ */
padding: .0em .5em; /* ์ํ๋ ์ฌ๋ฐฑ ์ค์ , ์ํ๋จ ์ฌ๋ฐฑ์ผ๋ก ๋์ด๋ฅผ ์กฐ์ */
font-family: inherit; /* ํฐํธ ์์ */
font-size: 18pt;
border: 1px solid #999;
border-radius: 0; /* iSO ๋ฅ๊ทผ๋ชจ์๋ฆฌ ์ ๊ฑฐ */
outline-style: none; /* ํฌ์ปค์ค์ ๋ฐ์ํ๋ ํจ๊ณผ ์ ๊ฑฐ๋ฅผ ์ํ๋ค๋ฉด */
-webkit-appearance: none; /* ๋ธ๋ผ์ฐ์ ๋ณ ๊ธฐ๋ณธ ์คํ์ผ๋ง ์ ๊ฑฐ */
-moz-appearance: none;
appearance: none;
}
</style>
</head>
<body>
<div class="urlbox">
<input id="urlInput" type="text" placeholder="type your url and enter">
</div>
<div id="content"></div>
<script src="renderer.js"></script>
</body>
</html>