-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 835 Bytes
/
index.html
File metadata and controls
32 lines (27 loc) · 835 Bytes
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
<!--
* © 2022-2026 Ashraf Morningstar
*
* These are personal recreations of existing projects, developed by
* Ashraf Morningstar for learning and skill development.
* Original project concepts remain the intellectual property of
* their respective creators.
*
* https://github.com/AshrafMorningstar
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample App</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Welcome to My App</h1>
<button id="actionBtn">Click Me</button>
</div>
<script src="script.js"></script>
</body>
</html>