-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 3.29 KB
/
index.html
File metadata and controls
84 lines (84 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>
<link rel="stylesheet" type="text/css" href="styles.css">
</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 class="header-background">
<div class="search-area">
<img src="images/npm-logo.png" alt="npm logo" class="logo-size">
<input type="search" placeholder="find packages" class="search-bar">
<button type="submit"></button>
<ul class="sign-up">
<li><a href="#">sign up</a><span> or </span><a href="#">log in</a></li>
<li><img src="images/bear-logo.png" alt="bear logo"></li>
</ul>
</div>
<div class="city-background">
<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 href="#">Sign up for npm</a>
</div>
</header>
<section id="section-top">
<div class="content">
<img src="images/collaboration.svg" alt="friends">
<h1>npm Orgs is powerful collaboration - for free</h1>
<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><br>
</ul>
<a href="#" class="sign-up-btn">Sign up for Orgs</a>
<div class="learn-more">
<span>or </span><a href="#">Learn more about Orgs</a>
</div>
</div>
</section>
<section id="section-middle">
<div class = "middle-content">
<h1>What is npm?</h1>
<p>Use npm to install, share, and distribute code; manage dependencies in your projects; and share & receive feedback with others.</p>
<a href="#">Install npm</a>
</div>
</section>
<section id="section-bottom">
<h2>What can you make with 475,000 building blocks?</h2>
<p>The npm registry hosts almost half a million packages of free, reusable code - the largest software registry in the world.</p>
<div class="bottom-content">
<div>
<img src="images/binoculars.svg" alt="Find">
<h2>Find</h2>
<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>
<img src="images/mountain-flag.svg" alt="Discover">
<h2>Discover</h2>
<p>Packages for mobile, IoT, front end, back end, robotics... everything you need to start building amazing things.</p>
</div>
<div>
<img src="images/backpack.svg" alt="Build">
<h2>Build</h2>
<p>Assemble packages like building blocks to quickly develop awesome new projects.</p>
</div>
</div>
</section>
</body>
</html>