Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BCN-PT-012025] Diep Nguyen #3941

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
109 changes: 100 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,100 @@
NPM Clone Nifty Penguin Magic npm Enterprise Products Solutions Resources Docs Support Search Join Log In Build amazing
things Essential JavaScript development tools that help you go to market faster and build powerful applications using
modern open source code. See plans Join for free Bring the best of open source to your company 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. Zero configuration Create an org, add
your team, and start collaborating. Nothing to configure, set up, or manage. Team management Control who has access to
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>IronHack test</title>
<link rel="stylesheet" href="style.css">
</head>

<body>

<header>
<div class="top-bar">
<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="#"> Products </a></li>
<li><a href="#"> Solutions </a></li>
<li><a href="#"> Resources </a></li>
<li><a href="#"> Docs </a></li>
<li><a href="#"> Support </a></li>
</ul>
</nav>
</div>

<div class = "second-top-bar">
<div second-top-bar-items>
<img class="npm-logo" src="images/npm-logo.png" alt="npm-logo" />
</div>
<div second-top-bar-items>
<form class="search-form">
<div><img class="magnifying-glass" src="images/magnifying-glass.png" alt="magnifying-glass"/></div>
<div><input type="text" placeholder="Search packages"></div>
<div><button type="submit">Search</button></div>
</form>
</div>
<div second-top-bar-items>
<a href="#"><button type="button">Join</button></a>
<a href="#"><button type="button">Log In</button></a>
</div>
</div>
</header>

<main>
<div class="build-amazing-things">
<h1>Build amazing things</h1>
<a>Essential javaScript development tools that help you go to market faster and build powerful applications using modern open source code.</a>
<div class="button-container">
<a class="see-plans-button" href="#">See plans</a>
<a class="join-for-free-button" href="#">Join for free</a>
</div>
</div>

<div class="bring-open-source">
<img class="triangle-hexagon" src="images/triangle-hexagon.svg" alt="triangle-hexagon" />
<h2>Bring the best open source to your company</h2>
<a>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.</a>
</div>

<div class="npm-features">
<div class="boxes">
<div class="box">
<img class="zero zero-configuration" src="images/zero-configuration.svg" alt="zero-configuration" />
<h3>Zero configuration</h3>
<p>Create an org, add your team, and start collaborating. Nothing to configure, set up or manage.</p>
</div>

<div class="box">
<img class="team-management" src="images/team-management.svg" alt="team-management" />
<h3>Team management</h3>
<p>Control who has access to what modules within your teamspace using straightforward team management capabilities.</p>
</div>

<div class="box">
<img class="familiar-features" src="images/familiar-features.svg" alt="familiar-features" />
<h3>Familiar features</h3>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>

<div class="box">
<img class="npm-audit" src="images/npm-audit.svg" alt="npm-audit" />
<h3>Npm audit</h3>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make an open sources software safer.</p>
</div>
</div>

<div class = "final-button">
<a class="create-org-button" href="#">Create an Org</a>
</div>
</div>

</main>
</body>

</html>
Loading