-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewTab.html
28 lines (25 loc) · 939 Bytes
/
newTab.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
<!DOCTYPE html>
<html lang="ko">
<head>
<title>Hey Googler</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./newTab.css" /> <!--css-->
</head>
<body>
<section class="wrap">
<iframe id="side-bar" src="./list.html"></iframe>
<section class="content">
<div class="logo-area">
<img id="logo" src="./images/logo_gray.svg">
</div>
<div class="search-box">
<form class="search-form" method=get action="http://www.google.com/search">
<input class="search-text" type="text" name="q" size="40" maxlength="255" value=""
placeholder="Google 검색 또는 url 입력" /> <!-- 구글 검색 입력 창 -->
<input class="search-button" type=submit value="" /> <!-- 검색 버튼 -->
</form>
</div>
</section>
</section>
</body>
</html>