-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
52 lines (52 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Hello! Silicon Valley"/>
<meta property="og:description" content="당신에게 어울리는 실리콘밸리 기업을 추천해드립니다"/>
<meta property="og:url" content="https://hellosiliconvalley.me/"/>
<meta property="og:image" content="https://hellosiliconvalley.me/public/preview.png"/>
<link rel="stylesheet" type="text/css" charset="UTF-8" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-176307435-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-176307435-1');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
word-break: keep-all;
}
body {
margin: 0 auto;
max-width: 500px;
min-height: 100vh;
height: 100%;
font-family: 'Noto Sans KR', sans-serif;
font-size: 16px;
line-height: 1.4;
background: #FFF;
background-repeat: no-repeat;
background-attachment: fixed;
background-image: linear-gradient(50deg, rgba(254,218,135,.7), rgba(237,163,203,.7));
}
main {
background: #FFF;
color: #000;
}
</style>
<title>Hello! Silicon Valley</title>
</head>
<body>
<div id="app"></div>
</body>
</html>