forked from Simpleyyt/jekyll-theme-next
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuickCamera.html
142 lines (134 loc) · 4.16 KB
/
QuickCamera.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
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Camera - Capture Every Moment</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #4CAF50;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
padding: 20px;
max-width: 1000px;
margin: auto;
}
.features, .contact {
margin: 20px 0;
display: flex;
gap: 20px;
}
.feature-item, .contact-form {
flex: 1;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
.download-button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
text-align: center;
display: inline-block;
border-radius: 5px;
text-decoration: none;
font-size: 18px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Quick Camera</h1>
<p>Capture Every Moment with Ease</p>
</header>
<nav>
<a href="#features">Features</a>
<a href="#download">Download</a>
<a href="#contact">Contact Us</a>
</nav>
<section id="about">
<h2>About Quick Camera</h2>
<p>Quick Camera is a powerful yet simple camera app designed to help you capture beautiful moments with just one tap. With lightning-fast response time, seamless interface, and customizable settings, Quick Camera is the ideal app for both casual and professional photographers.</p>
</section>
<section id="features">
<h2>Features</h2>
<div class="features">
<div class="feature-item">
<h3>Fast Capture</h3>
<p>Quick Camera's high-speed capture ensures that you never miss a moment.</p>
</div>
<div class="feature-item">
<h3>Face Detection</h3>
<p>Enable face detection for perfectly focused shots every time.</p>
</div>
<div class="feature-item">
<h3>HD Recording</h3>
<p>Record high-definition videos with smooth performance and stunning clarity.</p>
</div>
</div>
</section>
<section id="download">
<h2>Download Quick Camera</h2>
<p>Experience Quick Camera today and take your photography to the next level. Available on all major app stores.</p>
<a href="#" class="download-button">Download Now</a>
</section>
<section id="contact">
<h2>Contact Us</h2>
<div class="contact">
<div class="contact-info">
<p>If you have any questions, feedback, or suggestions, feel free to reach out to us.</p>
<p>Email: [email protected]</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="contact-form">
<h3>Send Us a Message</h3>
<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br><br>
<input type="submit" value="Send">
</form>
</div>
</div>
</section>
<footer>
<p>© 2024 Quick Camera. All rights reserved.</p>
</footer>
</body>
</html>