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.
95 changes: 95 additions & 0 deletions starter-code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,103 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>npm</title>

<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Your code goes here -->
<nav>
<div id="nav-bar"></div>
<div class="top-left">
<span class="heart">❤</span>
<span class="acronym">Neophobe Plebeian Mumpsimus</span>
</div>
<div class="top-right">
<ul>
<li><a class="active1" href="https://www.npm-enterprise.com/">npm Enterprise</a></li>
<li><a class="active1" href="https://www.npmjs.com/features">Features</a></li>
<li><a class="active1" href="https://www.npmjs.com/pricing">Pricing</a></li>
<li><a class="active1" href="https://docs.npmjs.com/">Docs</a></li>
<li><a class="active1" href="https://www.npmjs.com/support">Support</a></li>
</ul>
</div>
</nav>

<div class="logo-search-section">
<div class="logo">
<img src="../starter-code/images/npm-logo.png" alt="logo"
width="80"
height="31.11">
</div>
<div class="search">
<form role="search">
<svg width="15px" height="15px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Artboard-1" stroke="#777777" stroke-width="1.3"><g id="Group"><path d="M13.4044,7.0274 C13.4044,10.5494 10.5494,13.4044 7.0274,13.4044 C3.5054,13.4044 0.6504,10.5494 0.6504,7.0274 C0.6504,3.5054 3.5054,0.6504 7.0274,0.6504 C10.5494,0.6504 13.4044,3.5054 13.4044,7.0274 Z" id="Stroke-3"></path><path d="M11.4913,11.4913 L17.8683,17.8683" id="Stroke-7"></path></g></g></g></svg>
<input type="search" id="site-search" name="q"
placeholder="Search packages"
aria-label="Search through site content">
</form>
</div>
<div class="login">
<a class="active3" href="https://www.npmjs.com/features">login</a>
<span class="or">or</span>
<a class="active3" href="https://www.npmjs.com/signup">signup</a>
</div>
</div>

<div class="front-text">
<h1>Build amazing<br>
things</h1>
<span class="text1">
npm is the package manager for<br>
JavaScript and the world’s largest<br>
software registry. Discover packages of<br>
reusable code — and assemble them in<br>
powerful new ways.
</span>
<p class="z"><a class="active2" href="https://www.npmjs.com/signup">Sign up</a></p>
</div>

<div class="front-text2">
<img src="https://static.npmjs.com/images/collaboration-security.svg" width="425" height="250" alt="friends">
<div class="uno">
<h1 class="second-head">npm Orgs is powerful<br>
collaboration — for free</h1>
<span class="text9">
<ul class="collab">
<li>Encourage code discovery and re-use<br>
within teams</li>
<li>Publish and control access to your own<br>
namespace</li>
<li>Manage public and private code with the<br>
same workflow</li>
</ul>
</span>
<p class="w"><a class="active9" href="https://www.npmjs.com/signup?next=/org/create">Sign up for Orgs</a></p>
</div>
</div>

<div class="third-section">
<h2 class="third-head">What is npm?</h2>
<p class="y">Use npm to install, share, and distribute code;<br>
manage dependencies in your projects; and share &<br>
receive feedback with others.</p>
<p><a class="active12" href="https://www.npmjs.com/get-npm">Install npm</a></p>
</div>

<section>
<div class="last-section">
<h2 class="last-head">What can you make with 475,000 building blocks?</h2>
<h4>The npm registry hosts the world's largest collection of free, reusable code.</h4>
<div class="three-circles">
<span class="circle1"><img src="https://static.npmjs.com/images/binoculars-dot.svg" style="height: 100px;"></span>
<span class="circle2"><img src="https://static.npmjs.com/images/mountain-dot.svg" style="height: 100px;" width="100" height="100" alt="discover"></span>
<span class="circle3"><img src="https://static.npmjs.com/images/rucksack-dot.svg" style="height: 100px;" width="100" height="100" alt="build"></span>
</div>
<div class="word-circles">
<h3 class="find-two">Find Discover Build</h3>
</div>
</div>
</section>

</body>
</html>
Loading