forked from rajkaste/Form-Validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 1.05 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
<!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">
<script src="index.js"></script>
</head>
<body>
<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>
<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>
</body>
</html>