contents wip
parent
0c1ef90c40
commit
a5bf221448
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"liveServer.settings.port": 5501
|
||||||
|
}
|
@ -1,3 +1,3 @@
|
|||||||
# pimp-soup
|
# Pimp my Soupboat
|
||||||
|
|
||||||
Little workshop on how to customize the soupboat
|
Hello this is a little workshop to cover the basics of HTML + CSS + JS in order to customize our Soupboat⛵
|
||||||
|
@ -0,0 +1,39 @@
|
|||||||
|
html,
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 24px;
|
||||||
|
|
||||||
|
font-size: 24px;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
line-height: 1.6;
|
||||||
|
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pro {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cons {
|
||||||
|
color: tomato;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chapter {
|
||||||
|
padding: 24px;
|
||||||
|
margin: 32px 0;
|
||||||
|
|
||||||
|
background-color: #c6e2ff;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link rel="stylesheet" href="style.css" />
|
||||||
|
<title>Onigiri</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Onigiri is...</h1>
|
||||||
|
<img src="./assets/pandagiri.jpg" alt="Cute panda or tasty onigiri" />
|
||||||
|
<p>
|
||||||
|
Onigiri, also known as omusubi, nigirimeshi, or rice ball, is a Japanese food made from
|
||||||
|
white rice formed into triangular or cylindrical shapes and often wrapped in nori.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,4 @@
|
|||||||
|
body {
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
Loading…
Reference in New Issue