Skip to content

Commit 6766484

Browse files
committed
made simple functionality
0 parents  commit 6766484

File tree

9 files changed

+1156
-0
lines changed

9 files changed

+1156
-0
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

img/app-bg.jpg

1.64 MB
Loading

index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Feeling bored?</title>
8+
<script defer src="./script.js"></script>
9+
<link rel="stylesheet" href="./style/style.css" />
10+
<link href="https://fonts.googleapis.com/css2?family=Irish+Grover&family=Montserrat&display=swap" rel="stylesheet" />
11+
<link
12+
rel="stylesheet"
13+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
14+
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
15+
crossorigin="anonymous"
16+
referrerpolicy="no-referrer"
17+
/>
18+
</head>
19+
<body>
20+
<div class="app__container">
21+
<div class="app__inner">
22+
<h1 class="app__title">What to do?</h1>
23+
<button type="submit" name="app__search" id="app__search" class="app__search-btn">Find Activity</button>
24+
<p class="app__result" id="app__result"></p>
25+
</div>
26+
</div>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)