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
32 changes: 21 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,44 @@
<head>
<meta charset="utf-8">
<title>Startrly</title>
<link href="styles/normalize.css" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bitter" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Zilla+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Kreon:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Glegoo" rel="stylesheet">



</head>
<body>
<div>
<div class="container">


<nav>
<ul>
<li>
<li id="name">
Startrly
</li>
<li>
<li id="try-now">
Try Now!
</li>
<li>
<li id="about">
About
</li>
</ul>
</nav>


<section>
<section id="welcome">
<h1>Startrly</h1>
<sub>A catchy tagline for a great solution</sub>
<a href="#">Some Call to Action</a>
</section>


<section>
<section class="quote">
<blockquote>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</blockquote>
Expand All @@ -40,7 +50,7 @@ <h1>Startrly</h1>
</section>


<section>
<section id="why-startrly">
<h2>Why?</h2>
<ul>
<li>
Expand Down Expand Up @@ -68,7 +78,7 @@ <h2>Why?</h2>
</section>


<section>
<section class="quote">
<blockquote>
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</blockquote>
Expand All @@ -78,7 +88,7 @@ <h2>Why?</h2>
</section>


<section>
<section id="startrly-team">
<h2>Meet the team</h2>
<ul>
<li>
Expand Down Expand Up @@ -110,7 +120,7 @@ <h2>Meet the team</h2>
</section>


<section>
<section id="sponsors">
<h2>Sponsors</h2>
<ul>
<li>
Expand All @@ -132,7 +142,7 @@ <h2>Sponsors</h2>
</section>


<section>
<section id="footer">
<div>
<h3>Support</h3>
<ul>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like how you utilize different fonts from Google Font to make your page looks unique. You followed the project requirement closely and placed the normalize.css style file before your style file. That's great! For the Google Font, you could also add it to your css file using @import url (this would not require adding this font to the html file). :)

Expand Down
Loading