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
87 lines (85 loc) · 3.45 KB
/
index.html
File metadata and controls
87 lines (85 loc) · 3.45 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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="./style.css" />
<body>
<header>
<!-- First line in menu-->
<div>
<div>
<img class="blackheart" src="images/black-heart.png" alt="black hear logo">
<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>
<!--Second line in menu-->
<div>
<img class="npm-logo" src="images/npm-logo.png" alt="npm logo">
<form action="" method="">
<div class="search-image-container">
<img class="maglass" src="images/magnifying-glass.png"
alt="magnifying glass icon">
</div>
<input class="search-bar" type="text" placeholder="Search packages">
<button class="search-button" type="submit">Search</button>
</form>
<a class="join-button" href="#">Join</a>
<a class="login-button" href="#">Log in</a>
</div>
</header>
<!--Section 1-->
<section class="bat">
<h1>Build amazing things</h1>
<article>Essential JavaScript development tools that help go to market faster and build powerful applications using
modern open source code.</article>
<div class="sec1-buttons">
<a id="see-plans-button" href="#">See plans</a>
<a id="join-free-button" href="#">Join for free</a>
</div>
</section>
<!--Section 2-->
<section class="triangles">
<img id="triangle-hexagon" src="images/triangle-hexagon.svg" alt="triangle hexagon">
<h2>Bring the best of open source to your company</h2>
<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 and Org and get more out of the tools your team already knows and loves.
</article>
</section>
<!-- Section 3-->
<section class="fourbox">
<!--Top 4 box section-->
<div id="fourbox-container">
<div id="zeroconfig">
<img src="images/zero-configuration.svg" alt="zero configuration icon">
<h4>Zero configuration</h4>
<p>Create an org, add your team, and start colaborating.<br>Nothing to configure, set up, or manage.</p>
</div id="teammgmt">
<div><img src="images/team-management.svg" alt="team management icon">
<h4>Team Management</h4>
<p>Controll who has access to what modules within your team namespace using straightforward team management
capabilities.</p>
</div>
<div id="famfeat"><img src="images/familiar-features.svg" alt="familiar features icon">
<h4>Familiar features</h4>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>
<div id="npmaudit"><img src="images/npm-audit.svg" alt="npm audit icon">
<h4>nom audit</h4>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source
software faster.</p>
</div>
</div>
<div>
<a id="create-org-button" href="#">Create an Org</a>
</div>
</section>
</body>
</html>