-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (69 loc) · 2.3 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
<!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, maximum-scale=1">
<!-- This links to style.css -->
<link rel="stylesheet" href="style.css" />
<title>BEEZY CHALLENGE</title>
</head>
<body>
<div class="container">
<picture class="image-container">
<!-- This image is showing up only for desktop || tablets -->
<source
media="(min-width:610px)"
srcset="
./assets/images/phone-desktop-small.png 374w,
./assets/images/phone-desktop-medium.png 748w,
./assets/images/phone-desktop-small.png 804w
"
/>
<!-- This image is showing up only for mobile -->
<source
media="(max-width:610px)"
srcset="
./assets/images/phone-mobile-small.png 268w,
./assets/images/phone-mobile-medium.png 536w,
./assets/images/phone-mobile-large.png 804w
"
/>
<!-- Fallback image -->
<img src="./assets/images/phone-desktop-large.png" alt="Phone" />
</picture>
<!-- Social media -->
<div class="social-media-container">
<!-- This is linking to # -->
<a href="#" target="_blank">
<img src="./assets/images/email.svg" alt="email icon" />
</a>
<!-- This is linking to # -->
<a href="#" target="_blank">
<img src="./assets/images/twitter.svg" alt="twitter icon" />
</a>
</div>
<!-- secction container -->
<div class="section-container">
<!-- logo -->
<img src="./assets/images/logo.svg" class="logo" alt="logo" />
<!-- Title -->
<h1>The best of Slack & WhatsApp combined and built in Office 365</h1>
<!-- Subtitle -->
<h2>
Get early access to Contoso, the new enterprise messaging app for
modern team communication
</h2>
<br />
<!-- form container -->
<form action="submit">
<input type="email" placeholder="Your O365 email" />
<button type="submit">SEND</button>
</form>
</div>
</div>
<script>
// handle the data
</script>
</body>
</html>