-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (66 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
74 lines (66 loc) · 2.59 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>YouTube Tags Generator - SopKit</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Generate optimized YouTube tags effortlessly with SopKit's YouTube Tags Generator. Enhance your video rankings and grow your channel with ease!">
<meta name="keywords" content="YouTube Tags Generator, Video SEO, YouTube Optimization, SopKit, YouTube Tags Tool">
<meta name="author" content="SopKit Team">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "YouTube Tags Generator",
"url": "https://yourwebsite.com",
"description": "Generate SEO-friendly YouTube tags to improve video rankings.",
"applicationCategory": "Utility",
"creator": {
"@type": "Organization",
"name": "SopKit"
}
}
</script>
</head>
<body>
<header>
<div class="container">
<h1>YouTube Tags Generator</h1>
<p>Boost your YouTube video rankings with our smart tag generator. Enter a video title and get tailored tags instantly!</p>
<a href="https://sopkit.github.io" class="home-link">← Back to Home</a>
</div>
</header>
<div class="wrapper">
<div class="search-input">
<input type="text" placeholder="Enter YouTube Video Title to get tags.." onchange="result(this.value)">
<div class="autocom-box">
<!-- Suggestions inserted dynamically -->
</div>
<div class="icon"><i class="fas fa-search"></i></div>
</div>
</div>
<div class="tagbox">
<h2>Generated Tags:</h2>
<span class="tag" id="copy">Copy All Tags <i class="fa fa-copy"></i></span>
</div>
<section class="faq">
<h2>Frequently Asked Questions</h2>
<div class="question">
<h3>What is a YouTube Tags Generator?</h3>
<p>A YouTube Tags Generator helps create optimized tags that improve your video's discoverability on YouTube.</p>
</div>
<div class="question">
<h3>How do these tags help in SEO?</h3>
<p>Tags indicate the content of your video to YouTube's algorithm, improving its chances of appearing in relevant searches.</p>
</div>
</section>
<footer>
<p>© 2024 SopKit. All rights reserved.</p>
<a href="https://sopkit.github.io" class="footer-link">Visit Homepage</a>
</footer>
<script src="suggestions.js"></script>
<script src="script.js"></script>
</body>
</html>