-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (61 loc) · 1.77 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Play Store </title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #4285f4;
padding: 20px;
color: white;
font-size: 24px;
}
section {
padding: 20px;
}
.app-container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 400px;
margin: auto;
}
.app-icon {
max-width: 100px;
margin-bottom: 20px;
}
.download-button {
background-color: #4caf50;
color: white;
padding: 10px 20px;
font-size: 18px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}
</style>
</head>
<body>
<header>
Google Play Store
</header>
<p align="center">
<a href="https://play.google.com/"><img src="playlogo.png" height="100" alt=""></a></p>
<section>
<div class="app-container">
<img class="app-icon" src="contacts.png" alt="App Icon">
<h2>Your App Name</h2>
<p>Description of your app goes here. Highlight its key features and benefits.</p>
<a class="download-button" href="https://play.google.com/">Download Now</a>
</div>
</section>
</body>
</html>