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
Binary file added .DS_Store
Binary file not shown.
Binary file added starter-code/.DS_Store
Binary file not shown.
105 changes: 104 additions & 1 deletion starter-code/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,115 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>npm</title>
</head>
<body>
<!-- Your code goes here -->
<!--NAV BAR-->
<nav>
<div class="top-left">
<a class = "heart" href="#">♥︎</a>
<span class="acronym">Navel Pondering Mantra</span>
</div>
<ul class="top-links">
<li><a href="#">npm Enterprise</a></li>
<li><a href="#">features</a></li>
<li><a href="#">pricing</a></li>
<li><a href="#">documentation</a></li>
<li><a href="#">support</a></li>
</ul>
</nav>
<!--SECTION1-->
<header>
<div class="bar-set">
<div class="logo-set">
<img src="images/npm-logo.png" alt="npm-logo">
</div>
<div class="search-set">
<input type="text" id="search" placeholder="find packages">
<a class="header-item" href="#">Search</a>

</div>

<div class="item-set">
<p>
<a href="#">log in</a>
<a>or</a>
<a href="#">sign up</a>
</p>
</div>
<div class="bear-set">
<img src="images/bear-logo.png" alt="bear-logo">
</div>
</div>

<div class="container-one">
<div class= "container-bottom">
<h1>Build Amazing things</h1>
<p>npm is the package manager for JavaScript and the world's largest<br> software registry. Discover packages of reusable code - and<br> assemble them in powerful new ways.
</p>

<a class="link-btn" href="#">Sign up for npm</a><br>
</div>

</div>
</header>

<!--SECTION2-->
<section class="background-section">
<div>
<img class="img-collaboration" src="images/collaboration.svg" alt="collaboration" width="30%">
</div>
<div class="text-collaboration">
<h2>npm Orgs is powerful<br>collaboration - for free</h2>
<ul>
<li>Encourage code discovery and re-use within teams</li>
<li>Publish and control acess to your own namespace</li>
<li>Manage public and private code with the same workflow</li>
</ul>

<button type="button" href="#">Sign up for Orgs</button><br>

<p>or, <a href="#">Learn more about Orgs</a></p>
</div>
</section>
<!--SECTION3-->
<section class="what-npm">
<div class="text-npm">
<h2>What is npm?</h2>
<p>Use npm to install, share, and distribute code;<br> manage dependencies in your projects; and share &<br> receive feedback with others.</p>

<button type="button" href="#">Install npm</button>
</div>
</section>

<!--SECTION3-->
<section class="third">

<h2>What can you make with 800,000 building blocks?</h2>
<p>The npm registry hosts the world’s largest collection of free, reusable code.</p>

<div class="third-itens">
<img src="images/binoculars.svg" alt="binoculars"><br>
<h4>Find</h4><br>
<p>Libraries like <a href="#">jQuery</a>, <a href="#">Bootstrap</a>,<br> <a href="#">React</a>, and <a href="#">Angular</a>, and<br> components from frameworks<br> such as <a href="#">Ember</a>.</p>
</div>

<div class="third-itens">
<img src="images/mountain-flag.svg" alt="mountain-flag"><br>
<h4>Discover</h4><br>
<p>Packages for mobile, IoT, front<br> end, back end, robotics…<br> everything you need to start<br> building amazing things.</p>
</div>

<div class="third-itens">
<img src="images/backpack.svg" alt="backpack"><br>
<h4>Build</h4><br>
<p>Assemble packages like building<br> blocks to quickly develop<br> awesome new projects.</p>
</div>

</section>
</body>
</html>
Loading