28 lines
895 B
HTML
28 lines
895 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Free Competitors</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Free Competitors</h1>
|
|
</header>
|
|
<main>
|
|
<section id="search-section">
|
|
<input type="text" id="searchBox" placeholder="Search for software...">
|
|
<button onclick="searchSoftware()">Search</button>
|
|
</section>
|
|
<div class="content">
|
|
<section id="results"></section>
|
|
<div class="recommendations-container">
|
|
<h2 id="recommendations-heading">Recommendations:</h2>
|
|
<section id="recommendations"></section>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|