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
168 lines (119 loc) · 5.21 KB
/
index.html
File metadata and controls
168 lines (119 loc) · 5.21 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title> NPM-Landingpage </title>
<link rel='stylesheet' href='./style.css'/>
</head>
<body>
<header>
<div class='first-row'>
<div >
<img class='black-heart' src='./images/black-heart.png' alt='black-heart'/>
<span class='nifty-penguin'> Nifty Penguin Magic
</span>
</div>
<nav>
<ul>
<li>
<a href='#enterprice'> npm Enterprice</a>
</li>
<li>
<a href='#products'> Products</a>
</li>
<li>
<a href='#solutions'> Solutions </a>
</li>
<li>
<a href='#recources'> Resources</a>
</li>
<li>
<a href='#docs'> Docs</a>
</li>
<li>
<a href='#support'> Support </a>
</li>
</ul>
</nav>
</div>
<div class='second-row'>
<div class='npm-logo'>
<img class='npm-logo-img' src='./images/npm-logo.png' alt='npm logo'/>
</div>
<div class='search-bar-container'>
<form action='./search' method='post'>
<label for='search-bar'>
<input type='text' size='80' name='search-bar' id='search-bar' value='' placeholder='search packages'/>
</label>
<label for='search-bar-submit'>
<input type='submit' name='search' id='search-bar-submit' value='Search'/>
</label>
</form>
</div>
<div class='header-button'>
<div class='header-button-join'>
<a href='#'> Join </a>
</div>
<div class='header-button-login'>
<a href='#'> Log in</a>
</div>
</div>
</div>
</header>
<section class='amazing-thing'>
<div>
<h1> Build amazing things </h1>
<article>
<p>
Essential JavaScript development tools that help you go to market faster and build powerful applications using modern open source code.
</p>
</article>
<div class='amazing-thing-button'>
<div class='see-plans'>
<a href='#'> See plans </a>
</div>
<div class='join-free'>
<a href='#'> Join for free </a>
</div>
</div>
</div>
</section>
<section class='best-of-open'>
<img class='img-diamond' src='./images/triangle-hexagon.svg' alt='trianlge-hexagon'/>
<h3> Bring the best of open source to your company </h3>
<article>
<p> 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. </p>
</article>
</section>
<section class='choose-content'>
<div>
<div class='container-wrap'>
<div class='choose-content-container'>
<img src='./images/zero-configuration.svg' alt='Zero configuration'/>
<a href='#'> <h4>Zero configuration </h4> </a>
<p>Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.</p>
</div>
<div class='choose-content-container'>
<img src='./images/team-management.svg' alt='Team management'/>
<a href='#'> <h4>Team management </h4></a>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities. </p>
</div>
<div class='choose-content-container'>
<img src='./images/familiar-features.svg' alt='familiar-features'/>
<a href='#'> <h4>Familiar features</h4></a>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use. </p>
</div>
<div class='choose-content-container'>
<img src='./images/npm-audit.svg' alt='npm audit'/>
<a href='#'> <h4> npm audit </h4></a>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer. </p>
</div>
</div>
<div class='create-org'>
<a href='#'> Create an Org </a>
</div>
</div>
</section>
<!-- NPM Clone -->
</body>
</html>