Skip to content
Open
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
83 changes: 83 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,86 @@
what modules within your team namespace using straightforward team management capabilities. Familiar features npm Orgs
has 100% parity with all the public npm registry features your developers already use. npm audit Enjoy the security
auditing features built into the npm client, a zero-friction way to make open source software safer. Create an Org

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NPM Clone </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>
<div>
<img class="blackHeart" src="/images/black-heart.png" alt="Black Heart">
<span>Nifty Penguin Magic</span>
</div>
<nav>
<ul>
<li><a href="#">npm Enterprise</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Docs</a></li>
<li><a href="#">Support</a></li>
</ul>
</nav>
</div>
<div>
<img src="/images/npm-logo.png" alt="NPM Logo">

<form action="#" method="post" id="search">
<label for="search"><img src="/images/magnifying-glass.png" alt="Search Icon"></label>
<input type="search" name="search" id="search" placeholder="Search Packages">
<button type="submit" for="search">Search</button>
</form>

<a href="#" class="join">Join</a>
<a href="#" class="logIn">Log In</a>
</div>
</header>

<section class="landing">
<h1>Build amazing things</h1>
<article>Essential JavaScript development tools that help you go to market faster and build powerful applications using modern open source code.</article>
<div class="landingLinks">
<a href="#">See plans</a>
<a href="#">Join for free</a>
</div>
</section>

<section class="about">
<img src="images/triangle-hexagon.svg" alt="Triangle Hexagon Image">
<h2>Bring the best of open source to your company</h2>
<article>npm is the tool used by over 11,000,000 JavaScript developers around the world. Your developers already use it. Your company depends on it. Create an Org and get more out of the tools your team already knows and loves.</article>
</section>

<section class="info">
<div class="cardContainer">
<div class="card">
<img src="images/zero-configuration.svg" alt="zero configuration">
<h3 class="cardHeader">Zero configuration </h3>
<p>Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.</p>
</div>
<div class="card">
<img src="images/team-management.svg" alt="team management">
<h3 class="cardHeader">Team management</h3>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities.</p>
</div>
<div class="card">
<img src="images/familiar-features.svg" alt="Familiar features">
<h3 class="cardHeader">Familiar features</h3>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>
<div class="card">
<img src="images/npm-audit.svg" alt="npm audit">
<h3 class="cardHeader">npm audit</h3>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer.</p>
</div>
</div>
<a href="#">Create an Org</a>
</section>
</body>
</html>