Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WD-PT-SEP24-ES] Blanca de uña - HTML CSS Prework #3893

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 97 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,97 @@
NPM 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 lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Página Web - Nifty Penguin Magic</title>
<link rel="stylesheet" href="styles.css"> <!-- Vincula tu archivo CSS aquí -->
</head>
<body>

<header>
<div>
<div>
<img class="blackHeart" src="images\black-heart.png" alt="black heart" />
<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="container">
<div id="logo-box">
<!-- Logo -->
<img src="images\npm-logo.png" alt="Logo" class="logo">
</div>
<!-- Barra de búsqueda con botón de lupa y botón de búsqueda -->
<div class="search-container">
<img src="images\magnifying-glass.png" alt="Lupa">
<input type="text" placeholder="search packages">
<button type="submit">Search</button>
</div>

<!-- Botones de Join y Log in -->
<button class="btn">Join</button>
<button class="btn login">Log in</button>
</div>
</header>

<!-- Aquí puedes agregar más contenido -->
<main>
<section id="section1">
<div id="portada">
<h1>Build amazing things</h1>
<p>Essencial Javascript development tools that help you go to market faster and build powerful applications using modern open source code.</p>
<div class="cta1">
<button class="cta1-button" id="see-plans">See plans</button>
<button class="cta1-button" id="join-free">Join for free</button>
</div>
</div>
</section>
<section id="section2" style="text-align:center">
<img src="images\triangle-hexagon.svg"/>
<h2>Bring the best of open source to your company</h2>
<p>npm is the tool used by 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>
</section>
<section id="section3">
<div id="section3-block">
<div id="zero-configuration">
<img />
<h3>Zero Configuration</h3>
<p>Create an org, add your team and start collaborating.<br>Nothing to configure, set up, or manage.</p>
</div>
<div id="team-management">
<img />
<h3>Team management</h3>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities.</p>
</div>
<div id="familiar-features">
<img />
<h3>Familiar features</h3>
<p>npg Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>
<div id="npm-audit">
<img />
<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><h4>Create an Org</h4></button>

</section>
</main>

<!-- aquí iría un footer como este
<footer>
<p>&copy; 2024 Nifty Penguin Magic. Todos los derechos reservados.</p>
</footer>-->
</body>
</html>
37 changes: 37 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*general*/
@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
font-family: 'Poppins';
}
/*header*/
header > div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgray;
}

nav {
width: 600px;
}

nav ul {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}

nav a {
text-decoration: none;
color: black;
}

.blackHeart {
width: 20px;
margin-right: 1rem;
}

/*to be continued*/