First init

This commit is contained in:
gauvainboiche
2025-07-08 11:23:22 +02:00
commit 6a18c3851c
61 changed files with 2046 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasmoto's Arts & Crafts</title>
<link rel="stylesheet" href="./resources/css/style.css">
</head>
<body>
<div class="header">
<h1>Dasmoto's Arts & Crafts</h1>
</div>
<div class="product">
<h2 id="brushes">Brushes</h2>
<img src="./resources/img/hacksaw.jpeg" />
<h3>Art Frames (assorted)</h3>
<p>Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes. <span id="price">Starting at $3.00 / brush.</span></p>
</div>
<div class="product">
<h2 id="frames">Frames</h2>
<img src="./resources/img/frames.jpeg" />
<h3>Hacksaw Brushes</h3>
<p>Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and painted according to your needs. <span id="price">Starting at $2.00 / frame.</span></p>
</div>
<div class="product">
<h2 id="paint">Paint</h2>
<img src="./resources/img/finnish.jpeg" />
<h3>Clean Finnish Paint</h3>
<p>Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas, increasing the finish and longevity of any artwork. <span id="price">Starting at $5.00 / tube.</span></p>
</div>
</body>
</html>

View File

@@ -0,0 +1,42 @@
body {
font-family: Helvetica;
}
h2 {
font-weight: bold;
}
.header {
background-image: url(../img/pattern.jpeg);
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
margin: 0 auto;
}
#price {
font-weight: bold;
color: blue;
}
#brushes {
background-color: mediumspringgreen;
color: white;
font-weight: bold;
font-size: 32px;
}
#frames {
background-color: lightcoral;
color: white;
font-weight: bold;
font-size: 32px;
}
#paint {
background-color: skyblue;
color: white;
font-weight: bold;
font-size: 32px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB