-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.15 KB
/
index.html
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
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./index.css" />
<title>Class Test 1</title>
</head>
<body>
<nav>
<div class="logo">Startup 3</div>
<ul>
<li><a href="#">Subscribe</a></li>
<li><a href="#">Features</a></li>
<li><button>Sign Up</button></li>
</ul>
</nav>
<main>
<h1>Let’s make design fast and easy</h1>
<p>
The most important part of the Startup is the samples. The samples form
a set of 25 usable pages you can use as is or you can add new blocks
from UI Kit.
</p>
<div class="input">
<input type="email" placeholder="Your email" />
<button type="submit" onclick="AlertB(event)">Send</button>
</div>
<span>By signing up, you agree to the Terms of Service</span>
</main>
<!-- SCRIPT -->
<script src="./classpractice.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>