Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 42 additions & 28 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<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="./images/favicon-32x32.png">

<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">

<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>

<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
Expand All @@ -15,41 +18,52 @@
</style>
</head>
<body>

<header>
<h2>Huddle</h2>
Try It Free

Build The Community Your Fans Will Love

Huddle re-imagines the way we build communities. You have a voice, but so does your audience.
Create connections with your users as you engage in genuine discussion.

<h1>Build The Community Your Fans Will Love</h1>
</header>
<section>
<section class="mockups">
Huddle re-imagines the way we build communities. You have a voice, but so does your audience.
Create connections with your users as you engage in genuine discussion.
<button>
Get Started For Free

Grow Together

Generate meaningful discussions with your audience and build a strong, loyal community.
Think of the insightful conversations you miss out on with a feedback form.

Flowing Conversations

You wouldn't paginate a conversation in real life, so why do it online? Our threads
</button>
<img src="images/illustration-mockups.svg" alt="third">
</section>
<section class="grow">
<img src="images/illustration-grow-together.svg" alt="third">
<h2>Grow Together</h2>

Generate meaningful discussions with your audience and build a strong, loyal community.
Think of the insightful conversations you miss out on with a feedback form.
</section>
<section class="conversation">
<img src="images/illustration-flowing-conversation.svg" alt="second">
<h2>Flowing Conversations</h2>

You wouldn't paginate a conversation in real life, so why do it online? Our threads
have just-in-time loading for a more natural flow.
</section>
<section class="users">
<img src="images/illustration-your-users.svg" alt="third">
<h2>Your Users</h2>

Your Users

It takes no time at all to integrate Huddle with your app's authentication solution.
It takes no time at all to integrate Huddle with your app's authentication solution.
This means, once signed in to your app, your users can start chatting immediately.

</section>
Ready To Build Your Community?

<button>
Get Started For Free

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
</button>
</section>
<section class="buttom">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua

+1-543-123-4567
example@huddle.com

About Us
What We Do
FAQ
Expand All @@ -59,12 +73,12 @@
Contact Us

&copy; Copyright 2018 Huddle. All rights reserved.

</section>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</p>
</footer>
</body>
</html>
</html>
53 changes: 53 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
body{
background: url(images/bg-hero-mobile.svg)

}

section{
text-align: center;
font-size: 18px;
padding: 10px 40px 10px 40px;
line-height: 1.6;
background-color: white;
font-family: 'Open Sans', sans-serif;
}
h1{
text-align: center;
font-size: 40px;
}
h2{
text-align: center;
font-size: 35px;
}
header{
font-family: 'Poppins', sans-serif;
font-weight: 600;

}
button{
background-color: hsl(322, 100%, 66%);
width: 80%;
height: 70px;
border-radius: 50px;
font-size: 18px;
color: white;
margin: 50px;
padding: 20px;
text-align:center;

}

img{
width: 400px;
}
footer{
background-color: black;
color: white;
height: 50px;
}

.buttom{
background-color: black;
color: white;
height: 50px;
}