forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (121 loc) · 4.78 KB
/
index.html
File metadata and controls
130 lines (121 loc) · 4.78 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!-- Clone Nifty Penguin Magic npm Enterprise Products Solutions Resources Docs Support Search Join Log In Build amazing
things Essential JavaScript development tools that help you go to market faster and build powerful applications using
modern open source code. See plans Join for free Bring the best of open source to your company npm is the tool used by
over 11,000,000 JavaScript developers around the world. Your developers already use it. Your company depends on it.
Create an Org and get more out of the tools your team already knows and loves. Zero configuration Create an org, add
your team, and start collaborating. Nothing to configure, set up, or manage. Team management Control who has access to
what modules within your team namespace using straightforward team management capabilities. Familiar features npm Orgs
has 100% parity with all the public npm registry features your developers already use. npm audit Enjoy the security
auditing features built into the npm client, a zero-friction way to make open source software safer. Create an Org-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>npm exercise</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div>
<div>
<img
src="images/black-heart.png"
alt="black-heart"
class="blackHeart"
/>
<span>Nifty Penguin Magic</span>
</div>
<nav>
<ul>
<li><a href="#"> npm Enterprise </a></li>
<li><a href="#"> Products </a></li>
<li><a href="#"> Solutions </a></li>
<li><a href="#"> Resources </a></li>
<li><a href="#"> Docs </a></li>
<li><a href="#"> Support </a></li>
</ul>
</nav>
</div>
<div>
<div class="search">
<img src="images/npm-logo.png" alt="npm-logo" class="logo" />
<form action="#" method="GET" id="SearchBar">
<label for="SearchBar"
><img
src="images/magnifying-glass.png"
alt="magnifying-glass"
class="magnifying-glass"
/></label>
<div class="SearchBar">
<input type="text" placeholder="Search Packages" />
<button type="submit">Search</button>
</div>
</form>
<a href="#join" class="join">Join </a>
<a href="#login" class="login">Log in</a>
</div>
</div>
</header>
<section id="presentation">
<h1>Build amazing things</h1>
<article>
Essential JavaScript development tools that help you go to market faster
and build powerful applications using modern opensource code.
</article>
<div class="butt">
<a href="#" id="plans">See plans </a>
<a href="#" id="join">Join for free</a>
</div>
</section>
<section id="sales">
<img src="images/triangle-hexagon.svg" alt="triangle-hexagon" />
<h2>Bring the best of opensource to your company</h2>
<article class="stext">
npm is the tool used by over 11.000.000 javascript developers around
this world. Yours developers already use it. Your company depends on it.
Create an Org and get more out of the tools your team already knows and
loves.
</article>
</section>
<section>
<div id="features">
<div class="features">
<img src="images/zero-configuration.svg" alt="zero-configuration" />
<h3>Zero configuration</h3>
<article>
Create an org, add your team and start collaborating. Nothing to
configure, set up, or manage.
</article>
</div>
<div class="features">
<img src="images/team-management.svg" alt="team-management" />
<h3>Team management</h3>
<article>
Control who has access to modules within your Team namespace using
straightforward team management capabilities
</article>
</div>
<div class="features">
<img src="images/familiar-features.svg" alt="familiar-features" />
<h3>Familiar features</h3>
<article>
npm Orgs has 100% parity with all the public npm registry features
your developers already use.
</article>
</div>
<div class="features">
<img src="images/npm-audit.svg" alt="npm audit" />
<h3>npm audit</h3>
<article>
Enjoy the security auditing features built into the npm client, a
zero-friction way to make opensource software safer.
</article>
</div>
</div>
<div id="button">
<button class="button">Create an Org</button>
</div>
</section>
</body>
<footer></footer>
</html>