-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracks.html
More file actions
95 lines (88 loc) · 3.27 KB
/
tracks.html
File metadata and controls
95 lines (88 loc) · 3.27 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
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>
Learning Tracks | Code & Create Bootcamp - Web Dev, Design, Data & More
</title>
<meta
name="description"
content="Explore Code & Create Bootcamp's learning tracks: Web Development, Product Design (UI/UX), Data Analysis, Product Management, and 3D Animation. Choose the track that fits your goals and go from beginner to job-ready in 3 months."
/>
<meta name="author" content="Code & Create Bootcamp" />
<meta name="robots" content="index, follow" />
<link
rel="canonical"
href="https://ccb-bootcamp-page-nine.vercel.app/tracks.html"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://ccb-bootcamp-page-nine.vercel.app/tracks.html"
/>
<meta
property="og:title"
content="Learning Tracks | Code & Create Bootcamp"
/>
<meta
property="og:description"
content="Choose from 5 beginner-friendly tracks: Web Development, Product Design, Data Analysis, Product Management & 3D Animation. Go from beginner to job-ready in 3 months."
/>
<meta property="og:image:type" content="image/jpeg" />
<meta
property="og:image:secure_url"
content="https://ccb-bootcamp-page-nine.vercel.app/assets/og-banner-v2.jpg"
/>
<meta
property="og:image"
content="https://ccb-bootcamp-page-nine.vercel.app/assets/og-banner-v2.jpg"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Code & Create Bootcamp" />
<meta property="og:locale" content="en_NG" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@codeandcreatehq" />
<meta
name="twitter:title"
content="Learning Tracks | Code & Create Bootcamp"
/>
<meta
name="twitter:description"
content="Choose from 5 beginner-friendly tracks: Web Development, Product Design, Data Analysis, Product Management & 3D Animation."
/>
<meta
name="twitter:image"
content="https://ccb-bootcamp-page-nine.vercel.app/assets/og-banner-v2.jpg"
/>
<link
rel="shortcut icon"
href="assets/svg/favicon.svg"
type="image/svg+xml"
/>
<link rel="stylesheet" href="./styles/tracks.css" />
</head>
<body data-page="tracks">
<div id="header"></div>
<main>
<section class="hero-section" aria-labelledby="tracks-hero-heading">
<div class="hero-section-content">
<h1>Tracks, curriculum and details</h1>
<p>
Choose the track that aligns with your goals, our intensive tracks
are designed to take you from beginner to job ready in months
</p>
</div>
</section>
<section class="tracks-section" aria-labelledby="tracks-section">
<div class="tracks-card-section" id="tracks-container"></div>
</section>
</main>
<div id="footer-showcase-container"></div>
<script type="module" src="./scripts/tracks.js"></script>
</body>
</html>