-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (47 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
59 lines (47 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Masonry 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="Masonry 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/Masonry/" />
<meta property="og:title" content="Masonry 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="Masonry Example Code" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://web.eliteinterns.in/libraries/Masonry/" />
<meta property="twitter:title" content="Masonry 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="Masonry Example Code" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Masonry 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/Masonry/",
"image": "https://web.eliteinterns.in/assets/images/internship.png"
}
</script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="grid"></div>
<!-- Masonry.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/4.2.2/masonry.pkgd.min.js"></script>
<!-- imagesLoaded -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.4/imagesloaded.pkgd.min.js"></script>
<script src="script.js"></script>
</body>
</html>