-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (101 loc) · 4.45 KB
/
index.html
File metadata and controls
112 lines (101 loc) · 4.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163172021-1"></script>
<script>
if (document.location.hostname.includes('chinese-network.org')) {
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-163172021-1');
} else {
console.log('Not sending google analytics for development');
}
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chinese Entrepreneurs Group</title>
<link rel="shortcut icon" href="assets/021favicon.png">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheets/common.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/index.css" />
<!-- Falling Stars -->
<link rel="stylesheet" type="text/css" href="externalcode/ambient.css">
<script src="scripts.js"></script>
</head>
<body>
<nav class="dark compound">
<ol>
<li><a href="index.html"> <img id="nav-logo" src="assets/CEG-Logo-White.svg" /> </a></li>
<li><a href="about-us.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="join-us.html">Join Us</a></li>
</ol>
<section class="video" onclick="videoOnClick();">
<video class="video-video" id="index-main-video" loop="loop" autoplay="autoplay" muted>
<source class="mp4" type="video/mp4" src="assets/ceg-video-export-5.mp4">
</video>
<div class="video-text" id="index-main-video-text">
Chinese Entrepreneurs Group<br>
⬇︎   
⬇︎   
⬇︎
</div>
</section>
</nav>
<div class="night" style="top: 0;">
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
</div>
<main>
<section>
<header>
<h2>Latest News</h2>
</header>
<div class="card-wrapper">
<div class="card">
<h5>Team Relation</h5>
<p>We recently launched an anonymous messaging app to collect advice and opinions from internal members.</p>
</div>
<div class="card">
<h5>Trip to Blue Mountain</h5>
<p>We recently arranged a skiing trip to Blue Mountain. Check out photos <a class="link" href="https://www.instagram.com/p/B9aEaKmF8cY/?utm_source=ig_web_copy_link">here</a>!</p>
</div>
<!-- <div class="card">
<h5>Quibusdam</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit dolores laudantium alias ad nobis maxime rem voluptates nemo, est inventore quod.</p>
</div> -->
</div>
</section>
<section>
<header>
<h2>Sponsors</h2>
</header>
<div class="image-container">
<img src="assets/sponsor-logos/cibc.png" alt="CIBC">
<img src="assets/sponsor-logos/dudu.png" alt="Dudu">
<img src="assets/sponsor-logos/easy40.png" alt="Easy 4.0" style="background-color: white; padding: 10px;">
<img src="assets/sponsor-logos/lion.png" alt="Lion">
</div>
</section>
</main>
<footer>
Copyright © 2019-2020 Chinese Entrepreneurs Group. All rights reserved.
</footer>
</body>
</html>