forked from mlsacbvp/MLSAC-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 3.07 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
<!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>MLSAC BVP</title>
<link rel="stylesheet" href="MLSAC Home page/css/home.css" />
</head>
<body>
<div class="main">
<video class="bg" src="MLSAC Home page/images/phonebg.mp4" autoplay muted></video>
<div class="buttons">
<a class="events" href="Events.html"><div>Events</div></a>
<a class="about" href="aboutus.html"><div>About</div></a>
</div>
<div class="social">
<a target=”_blank” href="https://www.instagram.com/mlsac_bvcoe/"
><img src="MLSAC Home page/images/icons/instalogo.png" alt="instagramIcon" />
</a>
<a href="mailto:[email protected]"
><img src="MLSAC Home page/images/icons/outlooklogo.png" alt="mailIcon"
/></a>
<a target=”_blank” href="https://www.linkedin.com/company/microsoft-learn-student-chapter-mlsc-bvp"
><img src="MLSAC Home page/images/icons/linkedinlogo.png" alt="LinkedInIcon"
/></a>
</div>
</div>
</body>
</html>
<!-- <!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>MLSAC BVP</title>
<link rel="stylesheet" href="MLSAC Home page/css/home.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/91243b6074.js" crossorigin="anonymous"></script>
<style>
.fab{
color: whitesmoke;
margin: 25px 10px 0 10px;
font-size: 2.5rem;
}
.fas{
color: whitesmoke;
margin: 25px 10px 0 10px;
font-size: 2.5rem;
}
.fab:hover{
color:grey;
margin: 25px 10px 0 10px;
font-size: 2.5rem;
}
.fas:hover{
color: grey;
margin: 25px 10px 0 10px;
font-size: 2.5rem;
}
</style>
</head>
<body>
<div class="main">
<div class="logo-image"> <video src="MLSAC Home page/images/background.mp4" muted autoplay></video></div>
<div class="buttons">
<a href="aboutus.html" class="About" ><div> ABOUT </div></a>
<a href="Events.html" class="Events"><div> EVENTS </div></a>
</div>
<div class="title">
<p>MICROSOFT LEARN STUDENT AMBASSADOR CHAPTER</p>
</div>
<div class="social">
<a target="”_blank”" href="https://www.instagram.com/mlsac_bvcoe/">
<i class="fab fa-instagram-square" style="user-select: auto;"></i>
</a>
<a href="mailto:[email protected]">
<i class="fas fa-envelope-square" style="user-select: auto;"></i></a>
<a
target="”_blank”"
href="https://www.linkedin.com/company/microsoft-learn-student-chapter-mlsc-bvp"
><i class="fab fa-linkedin" style="user-select: auto;"></i></a>
</div>
</div>
</body>
</html>
-->