-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
88 lines (66 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Bento grid</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<!-- Social Media 10x AI container-->
<div class="ai-container purple-bg container">
<h1>Social Media <span class="highlight">10x</span> <i>Faster</i> with AI</h1>
<div class="stars">
<img src="assets/images/illustration-five-stars.webp" alt="five stars image">
</div>
<p class="reviews">Over 4,000 5-star reviews</p>
</div>
<!-- Manage Multiple Accounts container -->
<div class="manage-container container white-bg">
<img src="assets/images/illustration-multiple-platforms.webp" alt="Manage multiple platforms">
<h2>Manage multiple accounts and platforms.</h2>
</div>
<!-- Mainting Schedule container-->
<div class="maintain-container yellow-bg container">
<h2>Maintain a consistent posting schedule.</h2>
<img src="assets/images/illustration-consistent-schedule.webp" alt="schedule calendar">
</div>
<!-- Social Media container -->
<div class="social-container lightpurple-bg container">
<h2>Schedule to social media</h2>
<img src="assets/images/illustration-schedule-posts.webp" alt="">
<p>Optimize post timings to publish content at the perfect time for your audience.</p>
</div>
<!-- Grow Followers container-->
<div class="followers-container purple-bg container">
<div class="image">
<img src="assets/images/illustration-grow-followers.webp" alt="">
</div>
<h2>Grow followers with non-stop content.</h2>
</div>
<!-- 56% container-->
<div class="numbers-container container white-bg">
<h2> >56%</h2>
<p>faster audience growth</p>
<img src="assets/images/illustration-audience-growth.webp" alt="">
</div>
<!-- Create Schedule container -->
<div class="create-container lightyellow-bg container">
<h2>Create and Schedule content <span class="highlight">quicker.</span></h2>
<img src="assets/images/illustration-create-post.webp" alt="">
</div>
<!-- Write your content Using AI container-->
<div class="writing-container yellow-bg container">
<h2>Write your content using AI.</h2>
<img src="assets/images/illustration-ai-content.webp" alt="">
</div>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge">Frontend Mentor</a>.
Coded by <a href="#">Julio Torres with help of Dylan</a>.
</div>
</body>
</html>