-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (100 loc) · 3.94 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mentor Cloud Selfie Booth</title>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Mentor Cloud Selfie Booth" />
<meta
name="twitter:description"
content="MentorCloud is celebrating the transformative power of mentorship with a 24-hr 'Sunrise to Sunset' Global Mentorship Festival on Oct 27, 2022, in partnership with National Mentoring Day"
/>
<meta
name="twitter:image"
content="https://uploads-ssl.webflow.com/5f97aed45612e672a043c898/634cf184af899d92adf8d3c1_OGI.jpg"
/>
<meta property="og:title" content="Mentor Cloud Selfie Booth" />
<meta
property="og:image"
content="https://uploads-ssl.webflow.com/5f97aed45612e672a043c898/634cf184af899d92adf8d3c1_OGI.jpg"
/>
<meta property="og:url" content="https://mc-selfie-booth.netlify.app/" />
<meta
property="og:description"
content="MentorCloud is celebrating the transformative power of mentorship with a 24-hr 'Sunrise to Sunset' Global Mentorship Festival on Oct 27, 2022, in partnership with National Mentoring Day"
/>
<link rel="stylesheet" href="./selfie.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section>
<div class="container">
<!-- selfie container start -->
<div class="selfie-container" id="selfie-container">
<div class="logos">
<img src="./assets/mc-logo.png" alt="" class="mc-logo" />
<img src="./assets/nmd.png" alt="" class="nmd-logo" />
</div>
<p class="c_text_large">I'm participating in</p>
<!-- <h1 class="c_h1">Global Mentorship Festival 2022</h1> -->
<div class="title"><img src="./assets/title.svg" alt="" /></div>
<p class="c_text_small">
on 27 Oct | A 24 Hr Global Mentoring Festival
</p>
<div class="web-cam">
<video autoplay></video>
<!-- <div class="img-container" hidden>
<img src="" alt="" />
</div> -->
</div>
<p class="c_text_large bold">Join me at</p>
<a
href="https://www.mentorcloud.com/gmf"
class="c_text_large link"
target="_blank"
>mentorcloud.com/gmf</a
>
<div class="time-sticker">
<img src="./assets/time-sticker.svg" alt="" />
</div>
<div class="world-map">
<img src="./assets/globe.svg" alt="" />
</div>
<div class="nmd-sticker">
<img src="./assets/nmd-sticker.png" alt="" />
</div>
<div class="gmf-2022">
<img src="./assets/gmf-2022.png" alt="" />
</div>
</div>
<!-- selfie container ends -->
<button id="capture-btn">
<img src="./assets/capture.svg" alt="" />
<p>Say Cloud</p>
</button>
<div class="share-and-reset-block">
<img src="./assets/reset-btn.svg" alt="" class="reset" id="reset" />
<a
class="share"
id="share"
href="https://www.linkedin.com/shareArticle?mini=true&url=https://mc-selfie-booth.netlify.app/"
target="_blank"
title="Share on LinkedIn"
>
<img src="./assets/linkedin.svg" alt="" />
<p>Share & let the world know</p>
</a>
</div>
</div>
</section>
<script src="./selfie.js"></script>
<script src="./html2canvas.js"></script>
</body>
</html>