Skip to content

Commit

Permalink
perfecting webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermenevesxyz committed Aug 29, 2023
1 parent 3326d1b commit 0c0d1a3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
Binary file added img/il_tinfoglio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 11 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Clothing Store</title>
<title>Georgiani Faggotini - Home</title>
</head>
<body>
<header class="header">
<h1>Clothing Store</h1>
<h1>Georgiani Faggotini</h1>
<h2>Leading fashion trends since 2023</h2>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Children</a></li>
<li><a href="#">Non-binary</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
Expand All @@ -23,9 +27,9 @@ <h1>Clothing Store</h1>
<section class="products">
<!-- Product cards go here -->
<div class="product-card">
<img src="product1.jpg" alt="Product 1">
<h2>Product 1</h2>
<p>Price: $29.99</p>
<img src="img/il_tinfoglio.png" alt="Il Tinfoglio">
<h2>Il Tinfoglio</h2>
<p>Price: $4.99</p>
</div>
<div class="product-card">
<img src="product2.jpg" alt="Product 2">
Expand All @@ -37,7 +41,7 @@ <h2>Product 2</h2>
</main>

<footer class="footer">
<p>&copy; 2023 Clothing Store. All rights reserved.</p>
<p>&copy; 2023 Georgiani Faggotini. All rights reserved.</p>
</footer>
</body>
</html>
Expand Down
22 changes: 22 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@400;700&display=swap');

/* Reset some default styles */
body, h1, h2, p, ul, li {
margin: 0;
Expand All @@ -19,6 +21,14 @@ body {

.header h1 {
margin-bottom: 10px;
font-family: "Qwitcher Grypen", cursive;
font-size: 5rem;
}

.header h2 {
margin-bottom: 10px;
font-family: "Qwitcher Grypen", cursive;
font-size: 2rem;
}

.header nav ul {
Expand All @@ -35,6 +45,10 @@ body {
color: #fff;
}

.header nav ul li a:hover {
text-decoration: underline;
}

/* Main styles */
.main {
padding: 20px;
Expand All @@ -53,10 +67,18 @@ body {
width: calc(33.33% - 20px);
}

.product-card:hover {
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.product-card img {
max-width: 100%;
}

.product-card h2 {
font-family: serif;
}

/* Footer styles */
.footer {
background-color: #333;
Expand Down

0 comments on commit 0c0d1a3

Please sign in to comment.