-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.36 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.36 KB
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
37
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Form Validation JS</title>
<link rel="stylesheet" href="page1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="css/form.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="main-container">
<div class="sub">
<h1 class="wel">Welcome</h1>
<h3 class="ready">Form Validation Using JavaScript</h3>
<a href="page2.html"><button class="btn">Register Here</button></a>
</div>
</div>
</main>
<footer>
<div class="bottom">
<a href="https://www.linkedin.com/in/raj-kaste-97150413b/"><i class="fa fa-linkedin ml-auto" style="font-size:36px"></i></a>
<a href="https://github.com/rajkaste"><i class="fa fa-github ml-auto" style="font-size:36px"></i></a>
<a href="http://www.youtube.com/c/RajKaste"><i class="fa fa-youtube ml-auto" style="font-size:36px"></i></a>
<p class="cp">© 2023 Raj Kaste.</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>