chrome-plugin-demo/full-chrome-plugin-demo/newtab.html

34 lines
723 B
HTML
Raw Permalink Normal View History

2017-06-02 19:40:48 +08:00
<!DOCTYPE html>
<html>
<head>
<title>新标签页</title>
2017-06-16 18:54:57 +08:00
<meta charset="utf-8"/>
2017-06-02 19:40:48 +08:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html,body{height: 100%;}
body{font-family: 'Microsoft Yahei';margin:0;padding:0;}
.center {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-size: 48px;
color: #CCC;
}
2017-06-23 21:11:15 +08:00
.wrapper {
position: absolute;
top: 0;
left: 0;
padding: 40px;
font-size: 16px;
}
2017-06-02 19:40:48 +08:00
</style>
</head>
<body>
<div class="center"><p>这是一个自定义的新标签页</p></div>
2017-07-10 22:36:59 +08:00
<div class="wrapper">
<a href="https://www.baidu.com">百度</a>
<a href="https://www.so.com">360搜索</a>
</div>
2017-06-02 19:40:48 +08:00
</body>
</html>