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

[PT-102024] Tserendorj Erdenechimeg #3907

Open
wants to merge 1 commit 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
143 changes: 134 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,134 @@
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" />
<title>Npm-clone-challenge</title>
<link rel="stylesheet" href="styles.css" />
</head>

<body>
<header>
<!--top header-->
<div id="top-header">
<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>

<!--bottom header-->
<div id="bottom-header">
<form>
<div id="search-box-container">
<img class="npm-logo" src="/images/npm-logo.png" alt="npm logo" />
<img
class="magnifying-glass"
src="/images/magnifying-glass.png"
alt="magnifying glass"
/>
<input
id="search-box"
type="text"
id="search-packages"
name="search-packages"
placeholder="Search packages"
/>
<button id="search-button">Search</button>
</div>
</form>
<div id="join-log-in">
<a href="#" id="join-box"> Join </a>
<a href="#"> Log In </a>
</div>
</div>
</header>

<!-- section #1 -->
<section id="join-section">
<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>
<a href="#"> See plans </a>
<a href="#"> Join for free </a>
</div>
</section>

<!-- section #2 -->
<section id="ads-section">
<img
class="triangle-hexagon"
src="images/triangle-hexagon.svg"
alt="triangle hexagon"
/>
<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 #3 -->
<section id="features-section">
<div id="boxes">
<div class="box1">
<img src="images/zero-configuration.svg" alt="corsur in box" />
<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="box2">
<img src="images/team-management.svg" alt="network of people" />
<h3>Team management</h3>
<p>
Control who has access to what modules within your team namespace
using straightforward team management capabilities.
</p>
</div>

<div class="box3">
<img src="images/familiar-features.svg" alt="four boxes on scale" />
<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="box4">
<img src="images/npm-audit.svg" alt="binocular" />
<h3>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>
<div id="create-org-container">
<a href="#">Create an Org</a>
</div>
</section>
</body>
</html>
Loading