-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (110 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PyTik - TikTok Editing Tool</title>
<link rel="stylesheet" href="assets/styles.css" />
<link rel="prfeconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="container">
<h1>PyTik</h1>
<nav>
<a href="terms.html">Terms of Service</a>
<a href="privacy.html">Privacy Policy</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<h2>Create Stunning TikToks with Ease</h2>
<p>
PyTik is your go-to tool for creating engaging and viral TikTok
content.
</p>
<a href="#" class="cta-button">Coming Soon</a>
</div>
</section>
<section class="features">
<div class="container">
<h3>Key Features</h3>
<div class="feature-list">
<div class="feature-item">
<svg
width="200"
height="50"
viewBox="0 0 200 50"
xmlns="http://www.w3.org/2000/svg"
alt="Feature 1"
>
<text x="80" y="35" font-size="50" fill="black">✂</text>
</svg>
<h4>Advanced Editing Tools</h4>
<p>
Trim, cut, and merge videos with precision. Add filters,
effects, and transitions to make your TikToks stand out.
</p>
</div>
<div class="feature-item">
<svg
width="200"
height="100"
viewBox="0 0 200 100"
xmlns="http://www.w3.org/2000/svg"
alt="Feature 2"
>
<text x="80" y="55" font-size="50" fill="black">🎵</text>
</svg>
<h4>Seamless Music Integration</h4>
<p>
Access a vast library of trending music and add it to your
videos effortlessly.
</p>
</div>
<div class="feature-item">
<svg
width="200"
height="100"
viewBox="0 0 200 100"
xmlns="http://www.w3.org/2000/svg"
alt="Feature 3"
>
<text x="80" y="55" font-size="50" fill="black">🔗</text>
</svg>
<h4>Easy Sharing</h4>
<p>
Share your creations directly to TikTok and other social media
platforms with just a few taps.
</p>
</div>
</div>
</div>
</section>
<section class="call-to-action">
<div class="container">
<h2>Ready to Elevate Your TikTok Game?</h2>
<p>
Join thousands of creators who are already using PyTik to create
amazing content.
</p>
<a href="#" class="cta-button">Coming Soon</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 PyTik. All rights reserved.</p>
</div>
</footer>
<script src="assets/script.js"></script>
</body>
</html>