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
194 changes: 185 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,188 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

</body>
</html>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div>
<div>
<img src="./assets/black-heart.png" class="heart" alt="Black heart" />
<span>next() Packaged Middleware</span>
</div>
<nav>
<ul class="navv">
<li><a href="" class="nav-link">Product</a></li>
<li><a href="" class="nav-link">Pricing</a></li>
<li><a href="" class="nav-link">Documentation</a></li>
<li><a href="" class="nav-link">Community</a></li>
</ul>
</nav>
</div>

<div>
<img src="./assets/logo.png" alt="" />
<form action="">
<input type="text" class="input" placeholder="Search Packages" />
<button type="Submit" class="button1">Search</button>
<button type="Submit" class="button2">Sign Up</button>
<button type="Submit" class="button3">Sign In</button>
</form>
</div>
</header>

<section id="first">
<h1>Build amazing</h1>
<h1>things</h1>
<br />
<p>
We're npm, Inc., the company behind Node package manager, the npm
Registry, and npm CLI. We offer those to the community for free, but our
day job is building and selling useful tools for developers like you.
</p>
</section>

<section id="second">
<h4>Take your JavaScript</h4>
<h4>development up a notch</h4>
<br />
<p>
Get started today for free, or step up to npm Pro to enjoy a premium
JavaScript developemnt experience, with features like private packages
</p>
<form action="">
<button type="submit" class="b1">Sign up for free</button>
<button type="submit" class="b2">Learn about pro</button>
</form>
</section>

<section id="third">
<img src="./assets/bubble.png" alt="" />
<h3>Bring the best of open</h3>
<h3>source to you, your team,</h3>
<h3>and your company</h3>
<p>
Relied upon by more than 11 million developers worldwide, npm is
committed to making JavaScript development elegant, productive, and
safe. The free npm Registry has become the center of JavaScript code
sharing, and with more than one million packages, the largest software
registry in the world. Our other tools and services take the Registry,
and the work you do around it, to the next level.
</p>
</section>

<section id="fourth">
<div>
<img src="./assets/img (1).png" class="icon" alt="" />
<h3>npmFree</h3>
<p>
Becoming a contributing member of the open source JavaScript
community. Create public packages, publish updates, audit your
dependencies, and more.
</p>
<form action="">
<button type="button" class="buts">LEARN MORE</button>
</form>
</div>

<div>
<aside>
<img src="./assets/img (2).png" class="icon" alt="" />
<img src="./assets/img (5).png" alt="" class="icon" />
</aside>
<h3>npm Pro &Teams</h3>
<p>
For next-level JavaScript developers who want more capabilities. Pro
and teams add the ability to build private packages for you, your
team, or for customers.
</p>
<form action="">
<button type="button" class="buts">LEARN MORE</button>
</form>
</div>

<div>
<img src="./assets/img (3).png" class="icon" alt="" />
<h3>npm Enterprise</h3>
<p>
For every large teams and business-critical projects, npm Enterprise
delivers features that organizations with hundreds of developers need,
like SSo and enhanced security.
</p>
<form action="">
<button type="button" class="buts">LEARN MORE</button>
</form>
</div>

<div>
<img src="./assets/img (4).png" class="icon" alt="" />
<h3>npm PkgSafe</h3>
<p>
Our security teams unique insights into JavaScript vulnerabilites and
threats are deliverd as free and premium features,as well as services
for resellers and others.
</p>
<form action="">
<button type="button" class="buts">LEARN MORE</button>
</form>
</div>
</section>

<section id="fifth">
<h2>We ♡ open source</h2>
<p>
At npm, Inc., we're proud to dedicate teams of full-time employees to
operating the npm Registry, enhancing the CLI, improving JavaScript
security, and other projects that support and nurture a vibrant open
source community.
</p>
</section>

<div id="hh">
<h3>Gratefully serving everyone</h3>
<h3>from solo devs to the</h3>
<h3>Fortune 500</h3>
</div>

<img class="company" src="./assets/company.png" alt="" />

<section id="hello">
<div>
<h3>Help</h3>
<ul>
<li>Documentation</li>
<li>Community</li>
<li>Resources</li>
<li>Advisories</li>
<li>Status</li>
<li>Contact</li>
</ul>
</div>

<div>
<h3>About</h3>
<ul>
<li>Company</li>
<li>BLog</li>
<li>Careers</li>
<li>Webinars</li>
<li>Press</li>
<li>Newsletter</li>
</ul>
</div>

<div>
<h3>Terms & Policies</h3>
<ul>
<li>Polices</li>
<li>Terms of Use</li>
<li>Code of Conduct</li>
<li>Privacy</li>
</ul>
</div>
</section>
</body>
</html>
Loading