-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplash.html
28 lines (27 loc) · 1.11 KB
/
splash.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="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Song+Myung&display=swap" rel="stylesheet">
<link rel="stylesheet" href="questionstyle.css">
<title>'오늘의 쉼표'</title>
<style>
body {
position: relative;
height: 844px;
background-repeat: no-repeat;
margin: 0 35px;
background: linear-gradient(180deg, #FFC480 0%, #FCFCFC 89.06%, rgba(233, 254, 236, 0) 99.96%, rgba(255, 255, 255, 0.0885417) 99.97%);
}
</style>
</head>
<body>
<h2 class="splash_title">오늘의<br/>쉼표</h2>
<img id="meditate" src="./img/meditate.png"/>
<button type=button class="start_btn" onclick="location.href='question.html'">시작하기</button>
</body>
</html>