24 lines
459 B
HTML
24 lines
459 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scam Protector</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
width: 300px;
|
|
}
|
|
#result {
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Scam Protector</h1>
|
|
<p>Enter a URL to analyze:</p>
|
|
<input type="text" id="urlInput" placeholder="https://example.com">
|
|
<button id="analyzeBtn">Analyze</button>
|
|
<div id="result"></div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|