-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 1.29 KB
/
index.html
File metadata and controls
28 lines (24 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TikTok Hashtag Generator TOOL</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="alert alert-primary" role="alert">
👀 migrate to AlphaKit <a href="http://127.0.0.1:5500/index.html" class="alert-link" id="alert"> <button class="btn btn-outline-dark ms-auto btn-primary text-white">click here</button></a>.
</div>
<div class="container">
<h1>TikTok Hashtag Generator</h1>
<div class="input-container">
<input type="text" id="searchKeyword" placeholder="Enter a keyword">
<button id="searchBtn">Search</button>
</div>
<div id="result"></div>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>