-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (66 loc) · 3.66 KB
/
Copy pathindex.html
File metadata and controls
84 lines (66 loc) · 3.66 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
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Animate 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="Animate 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/Animate/" />
<meta property="og:title" content="Animate 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="Animate Example Code" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://web.eliteinterns.in/libraries/Animate/" />
<meta property="twitter:title" content="Animate 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="Animate Example Code" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Animate 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/Animate/",
"image": "https://web.eliteinterns.in/assets/images/internship.png"
}
</script>
<!-- Animate.css CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header>
<h1 class="animate__animated animate__fadeIn animate__delay-1s">Welcome to Our Website</h1>
</header>
<!-- Main Content Section -->
<section class="main-content">
<h2 class="animate__animated animate__fadeInUp animate__delay-2s">Our Amazing Features</h2>
<!-- Box that animates on scroll -->
<div class="main-box animate__animated animate__zoomIn animate__delay-3s">
Feature 1
</div>
<div class="main-box animate__animated animate__zoomIn animate__delay-4s">
Feature 2
</div>
<div class="main-box animate__animated animate__zoomIn animate__delay-5s">
Feature 3
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Your Company</p>
</footer>
<script src="script.js"></script>
</body>
</html>