generated from wanghaisheng/mood-emotion-charts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (112 loc) · 3.61 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta name="description" content="A mobile simulator designed to demonstrate mobile interface design.">
<meta name="keywords" content="mobile, simulator, mobile design, mobile app">
<meta name="author" content="Your Name or Company">
<meta http-equiv="Content-Language" content="en">
<!-- Canonical Link -->
<link rel="canonical" href="https://www.yourwebsite.com/pc-simulator" />
<!-- Open Graph for Social Media -->
<meta property="og:title" content="PC Simulator">
<meta property="og:description" content="A mobile simulator designed to demonstrate mobile interface design.">
<meta property="og:image" content="https://www.yourwebsite.com/pc-simulator-image.jpg">
<meta property="og:url" content="https://www.yourwebsite.com/pc-simulator">
<meta property="og:type" content="website">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="PC Simulator">
<meta name="twitter:description" content="A mobile simulator designed to demonstrate mobile interface design.">
<meta name="twitter:image" content="https://www.yourwebsite.com/pc-simulator-image.jpg">
<meta name="twitter:creator" content="@yourtwitterhandle">
<!-- Favicon -->
<link rel="icon" href="https://www.yourwebsite.com/favicon.ico" type="image/x-icon">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXX-Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-XXXXX-Y');
</script>
<!-- Microsoft Clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y) {
window.clarity=window.clarity||function(){(clarity.q=clarity.q||[]).push(arguments)};
clarity('set', 'anonymizeIP', true);
i=l.createElement('script');i.async=1;i.src=r;i.type='text/javascript';
t=l.getElementsByTagName('script')[0];t.parentNode.insertBefore(i,t);
})(document,window,'script','https://www.clarity.ms/tag/XXXXXX');
</script>
<title>PC Simulator</title>
<style>
/* Global Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.mobile-container {
width: 360px;
height: 640px;
border: 16px solid black;
border-radius: 16px;
background-color: #fff;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.content {
font-size: 1.2rem;
color: #333;
}
/* Adjustments for PC */
@media (min-width: 768px) {
.mobile-container {
width: 600px;
height: 1000px;
}
.content {
font-size: 1.5rem;
}
}
@media (min-width: 1024px) {
.mobile-container {
width: 800px;
height: 1400px;
}
.content {
font-size: 1.8rem;
}
}
/* Additional responsiveness for larger screens */
@media (min-width: 1200px) {
body {
justify-content: flex-start;
}
.mobile-container {
margin-top: 50px;
}
}
</style>
</head>
<body>
<div class="mobile-container">
<div class="content">
<p>Mobile Simulator Screen</p>
<p>PC Version: Adjusted for larger screens.</p>
</div>
</div>
</body>
</html>