◇ index.html
◇ nigiri.html
◇ sushi.css
sushi-recipe-app
›
index.html
nigiri.html
sushi.css
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sushi Recipe App</title>
<link rel="stylesheet" href="css/sushi.css">
</head>
<body>
<h1>🍣 Homemade Sushi</h1>
<p>Fresh salmon nigiri & cucumber maki.</p>
<ul>
<li><a href="nigiri.html">Salmon Nigiri</a></li>
<li><a href="maki-roll.html">Maki Roll</a></li>
</ul>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Salmon Nigiri</title>
</head>
<body>
<h1>Salmon Nigiri</h1>
<p>Slice fresh salmon over seasoned rice.</p>
<ol>
<li>Shape rice into oblong pads.</li>
<li>Top with sashimi-grade salmon.</li>
</ol>
</body>
</html>
/* Sushi Recipe App styles */
body {
font-family: system-ui, sans-serif;
background: #fff8f0;
color: #1f2937;
}
h1 {
color: #e85d4a;
}
https://sushi-recipe-app.robotron.app
🍣 Homemade Sushi
Fresh salmon nigiri & cucumber maki — live on Robotron.
✓
Deployed — your app is live
index.html
nigiri.html
sushi.css
Ln 8, Col 12
Ready
Deploying…
Live ✓