-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (64 loc) · 3.99 KB
/
index.html
File metadata and controls
78 lines (64 loc) · 3.99 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JustValidate Example Code | EliteInterns</title>
<link rel="icon" href="https://web.eliteinterns.in/assets/images/favicon.svg" type="image/x-icon" />
<!-- Primary Meta Tags -->
<meta name="title" content="JustValidate Example Code | EliteInterns" />
<meta name="description" content="Explore example HTML, CSS, JavaScript, and JSON code snippets used in the EliteInterns internship program website. Learn how we build responsive, interactive features for student engagement and project management." />
<meta name="keywords" content="EliteInterns, internship portal code, HTML example, CSS for internship website, JavaScript examples, JSON data, student internship website, web development internship, coding for interns, frontend example code">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://web.eliteinterns.in/libraries/JustValidate/" />
<meta property="og:title" content="JustValidate Example Code | EliteInterns" />
<meta property="og:description" content="Explore example HTML, CSS, JavaScript, and JSON code snippets used in the EliteInterns internship program website. Learn how we build responsive, interactive features for student engagement and project management." />
<meta property="og:image" content="https://web.eliteinterns.in/assets/images/internship.png" />
<meta property="og:image:alt" content="JustValidate Example Code" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://web.eliteinterns.in/libraries/JustValidate/" />
<meta property="twitter:title" content="JustValidate Example Code | EliteInterns" />
<meta property="twitter:description" content="Explore example HTML, CSS, JavaScript, and JSON code snippets used in the EliteInterns internship program website. Learn how we build responsive, interactive features for student engagement and project management." />
<meta property="twitter:image" content="https://web.eliteinterns.in/assets/images/internship.png" />
<meta property="twitter:image:alt" content="JustValidate Example Code" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "JustValidate Example Code | EliteInterns",
"description": "Explore example HTML, CSS, JavaScript, and JSON code snippets used in the EliteInterns internship program website.",
"url": "https://web.eliteinterns.in/libraries/JustValidate/",
"image": "https://web.eliteinterns.in/assets/images/internship.png"
}
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="form-wrapper">
<form id="myForm" novalidate autocomplete="on">
<h2>Create Account</h2>
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" autocomplete="name" />
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" autocomplete="email" />
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" autocomplete="new-password" />
<div class="error-message"></div>
</div>
<button type="submit">Register</button>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/just-validate@4.2.0/dist/just-validate.production.min.js"></script>
<script src="script.js"></script>
</body>
</html>