forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (88 loc) · 3.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>npm</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div>
<div>
<img src="./images/black-heart.png" alt="Black heart" class="black-heart">
<span class="header-text change-to-gray">Neverending Pun Machine</span>
</div>
<nav>
<ul class="header-text">
<li class="zoom"><a href="">npm Enterprise</a></li>
<li class="zoom"><a href="">Products</a></li>
<li class="zoom"><a href="">Solutions</a></li>
<li class="zoom"><a href="">Resources</a></li>
<li class="zoom"><a href="">Docs</a></li>
<li class="zoom"><a href="">Support</a></li>
</ul>
</nav>
</div>
<div class="bottom-header">
<div class="logo-container">
<img src="./images/npm-logo.png" alt="npm logo" class="logo-img">
</div>
<form action="">
<div class="search-bar">
<img src="./images/magnifying-glass.png" alt="magnifying glass">
<input type="text" id="search-bar" placeholder="Search packages">
</div>
<button type="submit">Search</button>
</form>
<div class="link-btn-container">
<a href="" class="header-text" id="join-btn">Join</a>
<a href="" class="header-text">Log In</a>
</div>
</div>
</header>
<section id="main-section">
<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="main-link-container">
<a href="" id="plans-link">See plans</a>
<a href="" id="join-link">Join for free</a>
</div>
</section>
<section id="company-section">
<img src="./images/triangle-hexagon.svg" alt="triangle triangle hexagon">
<h2>Bring the best of open source to your company</h2>
<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 id="features-section">
<div class="features">
<div>
<img src="./images/zero-configuration.svg" alt="Zero configuration image">
<h3>Zero configuration</h3>
<p>Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.</p>
</div>
<div>
<img src="./images/team-management.svg" alt="Team management image">
<h3>Team management</h3>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities.</p>
</div>
<div>
<img src="./images/familiar-features.svg" alt="Familiar features image">
<h3>Familiar features</h3>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>
<div>
<img src="./images/npm-audit.svg" alt="npm audit image">
<h3>npm audit</h3>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer.</p>
</div>
</div>
<button type="button">Create an Org</button>
</section>
</body>
</html>