first commit
This commit is contained in:
commit
a7aeb25397
6 changed files with 435 additions and 0 deletions
18
index.html
Normal file
18
index.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Don't Click This</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Don't Click This</h1>
|
||||
<p class="warning">I warned you...</p>
|
||||
<button id="dangerButton">Don't Click Me!</button>
|
||||
<p class="click-count">Clicks: <span id="clickCount">0</span></p>
|
||||
</div>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue