-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex.html
More file actions
54 lines (33 loc) · 991 Bytes
/
Copy pathIndex.html
File metadata and controls
54 lines (33 loc) · 991 Bytes
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
<link rel="icon" type="image/png" href="images/peachy-echo-favicon.png">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Peachy Echo Inc.</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Peachy Echo Inc.</h1>
<p>Crypto • Online Store • Marketing • Hair Salon</p>
</header>
<section>
<h2>Welcome</h2>
<p>Welcome to Peachy Echo Inc. We provide digital services, e-commerce solutions, marketing, and beauty services.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form id="contact-form">
<label>Name</label><br>
<input type="text" id="name" required><br><br>
<label>Email</label><br>
<input type="email" id="email" required><br><br>
<label>Message</label><br>
<textarea id="message" rows="5" required></textarea><br><br>
<button type="submit">Send Message</button>
</form>
</section>
<script src="script.js"></script>
</body>
</html>