58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Trending Keywords & Article Prompts</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header class="app-header">
|
|
<h1>Trending Keywords Explorer</h1>
|
|
<p>Discover high-opportunity keywords with low competition</p>
|
|
<div id="trending-date" class="trending-date"></div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="trending-section">
|
|
<h2>Today's Trending Keywords</h2>
|
|
<div class="refresh-container">
|
|
<button id="refresh-btn">Refresh Keywords</button>
|
|
<div id="loading" class="loading hidden">Loading...</div>
|
|
</div>
|
|
<div id="keywords-container" class="keywords-container">
|
|
<!-- Keywords will be populated here -->
|
|
</div>
|
|
</section>
|
|
|
|
<section class="prompt-section">
|
|
<h2>Article Prompt Generator</h2>
|
|
<div class="selected-keyword">
|
|
<p>Selected keyword: <span id="selected-keyword-text">None selected</span></p>
|
|
</div>
|
|
<button id="generate-prompt-btn" disabled>Generate Article Prompt</button>
|
|
|
|
<div id="prompt-result" class="prompt-result hidden">
|
|
<h3>Your ChatGPT Prompt</h3>
|
|
<div class="prompt-content">
|
|
<h4 id="prompt-title"></h4>
|
|
<div id="prompt-body"></div>
|
|
<div class="copy-container">
|
|
<button id="copy-prompt-btn">Copy Prompt</button>
|
|
<span id="copy-success" class="copy-success hidden">Copied!</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2023 Trending Keywords App</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |