forked from Textureman35/Textureman35.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppStore.html
69 lines (61 loc) · 1.7 KB
/
AppStore.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iOS App Store Mockup</title>
<style>
body {g
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
#container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.app {
display: flex;
align-items: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin: 10px 0;
}
.app img {
width: 80px;
height: 80px;
margin-right: 10px;
}
.app a {
text-decoration: none;
color: #333;
}
.app-title {
font-weight: bold;
}
</style>
</head>
<body>
<div id="container">
<div class="app">
<img src="app1-icon.png" alt="App 1">
<div class="app-details">
<p class="app-title"><a href="https://remotedesktop.google.com/access/?pli=1">App 1</a></p>
<p>Gives remote access to your home PC</p>
</div>
</div>
<div class="app">
<img src="app2-icon.png" alt="App 2">
<div class="app-details">
<p class="app-title"><a href="https://example.com/app2">App 2</a></p>
<p>Description of App 2.</p>
</div>
</div>
<!-- Add more app entries as needed -->
</div>
</body>
</html>