-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.28 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEO Analysis Tool</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>SEO Analysis Tool</h1>
<div class="input-section">
<div class="url-input">
<label for="urlInput">Your Website URL:</label>
<input type="url" id="urlInput" placeholder="https://example.com">
</div>
<div class="url-input">
<label for="competitorUrl">Competitor's URL (optional):</label>
<input type="url" id="competitorUrl" placeholder="https://competitor.com">
</div>
<button onclick="analyzeSEO()">Analyze SEO</button>
</div>
<div class="results-section">
<h2>Analysis Results</h2>
<div id="loadingSpinner" class="spinner hidden"></div>
<div class="comparison-container">
<div id="results" class="results-content"></div>
<div id="competitorResults" class="results-content"></div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>