forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 3.85 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
<!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 Clone</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header>
<div>
<div>
<img class="blackHeart" src="https://github.com/ctakiishi/lab-html-exercise/blob/master/images/black-heart.png?raw=true" />
<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 class="bottom-nav">
<img class="logo" src="https://github.com/ctakiishi/lab-html-exercise/blob/master/images/npm-logo.png?raw=true" />
<form action="/some-url" method="get">
<input type="text" name="search" id="search" placeholder="🔎 Search packages">
<button type="submit" class="search">Search</button>
</form>
<nav>
<ul>
<li><a href="#" id="join"> Join </a></li>
<li><a href="#"> Log In </a></li>
</ul>
</nav>
</div>
</header>
<section class="section1">
<h1>Build amazing things</h1>
<article>Essential JavaScript development tools that help you go to market faster and build powerful applications using modern open source code.</article>
<div class="button">
<form action="/some-url" method="get">
<button type="submit" id="plans">See plans</button>
</form>
<form action="/some-url" method="get">
<button type="submit" id="join-free">Join for free</button>
</form>
</div>
</section>
<section class="section2">
<img class="hexagon" src="images/triangle-hexagon.svg" />
<h3>Bring the best of open source to your company</h3>
<article>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.</article>
</section>
<section class="section3">
<div>
<img src="images/zero-configuration.svg" />
<h5>Zero configuration</h5>
<article>Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.</article>
</div>
<div>
<img src="images/team-management.svg" />
<h5>Team management</h5>
<article>Control who has access to what modules within your team namespace using straightforward team management capabilities.</article>
</div>
<div>
<img src="images/familiar-features.svg" />
<h5>Familiar features</h5>
<article>npm Orgs has 100% parity with all the public npm registry features your developers already use.</article>
</div>
<div>
<img src="images/npm-audit.svg" />
<h5>npm audit</h5>
<article>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer.</article>
</div>
<div class="create-org">
<form action="/some-url" method="get">
<button type="submit" id="org">Create an Org</button>
</form>
</div>
</section>
</body>
</html>