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 starter-code/images/npm-logo-square.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
127 changes: 118 additions & 9 deletions starter-code/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,121 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>npm</title>
</head>
<body>
<!-- Your code goes here -->
</body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"
rel="stylesheet"
/>
<link
rel="shortcut icon"
type="image/x-icon"
href="images/npm-logo-square.png"
/>
<title>npm</title>
</head>
<body>
<nav>
<div class="top-left">
<a class="heart" href="#">♥︎</a>
<span class="acronym">Neophobe Plebeian Mumpsimus</span>
</div>
<ul class="top-links">
<li><a href="#">npm Enterprise</a></li>
<li><a href="#">features</a></li>
<li><a href="#">pricing</a></li>
<li><a href="#">documentation</a></li>
<li><a href="#">support</a></li>
</ul>
</nav>

<header>
<div class="search-bar">
<img src="images/npm-logo.png" />
<input type="text" id="search-input" placeholder=" find packages" />
<span class="search-icon"><i class="fa fa-search"></i></span>
<a href="#" class="lighter">sign up or log in</a>
<img id="bear-logo" src="images/bear-logo.png" />
</div>
<div class="content-one">
<h1>Build amazing things</h1>
<p>
npm is the package manager for Javascript and the world's largest
software registry. Discover packages of reusable code - and assemble
them in powerful new ways.
</p>
<a class="lnk-btn header-button" href="#">Sign up for npm</a>
</div>
</header>

<section id="two">
<div class="two-svg">
<img id="collaboration" src="images/collaboration.svg" />
</div>
<div class="two-content">
<h2>npm Orgs is powerful collaboration - for free</h2>
<ul>
<li>Encourage code discovery and re-use within teams</li>
<li>Publish and control access to your own namespace</li>
<li>Manage public and private code with the same workflow</li>
</ul>
<a class="lnk-btn collab-button" href="#">Sign up for Orgs</a>
<p class="small">or, <a href="#">Learn more about Orgs</a></p>
</div>
</section>

<section id="three">
<div class="content-three">
<h2>What is npm?</h2>
<p class="">
Use npm to install, share, and distribute code;<br />manage
dependencies in your projects; and<br />share & receive feedback with
others.
</p>
<a class="lnk-btn" href="#">Install npm</a>
<!-- <img src="images/forklift.svg"/> -->
</div>
</section>

<section id="four">
<div class="content-four">
<h1 class="heading">What can you make with 475,000 building blocks?</h1>
<p>
The npm registry hosts almost half a million packages of free,
reusable code - the largest software registry in the world.
</p>
</div>
<div class="content-four">
<div class="logo">
<img src="images/binoculars.svg" />
<h4>Find</h4>
<p>
Libraries like <a href="#">Jquery</a>, <a href="#">Bootstrap</a>,
<a href="#">React</a>, and <a href="#">Angular</a>, and components
from frameworks such as <a href="#">Ember</a>.
</p>
</div>
<div class="logo">
<img src="images/mountain-flag.svg" />
<h4>Discover</h4>
<p>
Packages for mobile, IoT, front end, back end, robotics...
everything you need to start building amazing things.
</p>
</div>

<div class="logo">
<img src="images/backpack.svg" />
<h4>Build</h4>
<p>
Assemble packages like building blocks to quickly develop awesome
new projects.
</p>
</div>
</div>
</section>
</body>
<script src="https://kit.fontawesome.com/d8bae932d5.js"></script>
</html>
Empty file added starter-code/main.js
Empty file.
Loading