-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·99 lines (99 loc) · 3.44 KB
/
index.html
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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 class="nav-bar">
<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="header1">
<div class="header-left">
<img src="./images/npm-logo.png"/>
<input type="search" placeholder=" Find Packages"/>
</div>
<div class="header-right">
<div class="log">
<a href="#">sign up</a> or <a href="#">log in</a>
</div>
<img src="./images/bear-logo.png"/>
</div>
<div class="clearfix"></div>
</div>
<div class="realheader">
<div class="header2">
<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>
<div class="orangebtn">
<a href="#">Sign up for npm</a>
</div>
</div>
</div>
</header>
<section class="npmorgs">
<img src="./images/collaboration.svg"/>
<div class="orgtext">
<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>
</ul>
<div class="redbtn">
<a href="#">Sign up for Orgs</a>
</div>
<a class="extra" href="#">or, Learn more about Orgs</a>
</div>
</section>
<section class="npm">
<div class="npmtext">
<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>
<div class="darkbtn">
<a href="#">Install npm</a>
</div>
</div>
</section>
<section class="last-section">
<div class="last-text">
<h1>What can you make with 800,000 building blocks?</h1>
<p>The npm registry hosts the world’s largest collection of free, reusable code.</p>
</div>
<div class="last-article">
<article class="col-3">
<img src="./images/binoculars.svg"/>
<h3>Find</h3>
<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>
</article>
<article class="col-3 col-middle">
<img src="./images/mountain-flag.svg"/>
<h3>Discover</h3>
<p>Packages for mobile, IoT, front end, back end, robotics… everything you need to start building amazing things.</p>
</article>
<article class="col-3">
<img src="./images/backpack.svg"/>
<h3>Build</h3>
<p>Assemble packages like building blocks to quickly develop awesome new projects.</p>
</article>
</div>
</section>
</body>
</html>