-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno_mobile.html
104 lines (94 loc) · 3.21 KB
/
no_mobile.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<title>HOMETIFY</title>
<link rel="shortcut icon" href="logo.png" type="image/x-icon" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>컴퓨터 전용 홈페이지</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pretendard@2.001.01/stylesheet.css">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Pretendard', sans-serif;
background-color: #ffffff;
}
.container {
color:#fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.message {
color: #000;
text-align: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.additional_text1 {
text-align: center;
color: #000;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 20px; /* 버튼과의 간격 조절 */
}
.logo {
max-width: 100%;
height: auto;
}
.btn{
width: 132px;
height: 34px;
flex-shrink: 0;
border-radius: 17px;
background: #58B973;
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.btn_text {
color: #FFF;
text-align: center;
font-family: SUIT;
font-size: 10px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
/* span 태그 글자 색상 변경 */
span {
color: #FFF; /* 흰색으로 변경 */
}
</style>
</head>
<body>
<div class="container">
<img src="img1.png" alt="로고" class="logo">
<p class="message">정상적인 접근이 아닙니다</p>
<p class="additional_text1">Hometify는 모바일이 아닌 PC용으로 제작되었습니다.
Hometify 서비스를 이용하시려면 불편하시더라도 태블릿이나 컴퓨터로 접속해주시기 바랍니다.
</p>
<div class="btn">
<button class="btn" onclick="sendEmail()">
<span>개발자에게 연락하기</span>
</button>
</div>
</div>
</body>
<script>
function sendEmail() {
var emailAddress = 'bbiyakyee7@mail.com'; // 받는 사람 이메일 주소
// 이메일 주소, 제목, 내용을 인코딩하여 mailto 링크 생성
var mailtoLink = 'mailto:' + emailAddress;
// mailto 링크를 이용해 이메일 앱 열기
window.location.href = mailtoLink;
}
</script>
</html>