Skip to content

Instantly share code, notes, and snippets.

@standiki
Created January 12, 2023 23:03
Show Gist options
  • Save standiki/04d6396e389875e9f7fe55d88dd495eb to your computer and use it in GitHub Desktop.
Save standiki/04d6396e389875e9f7fe55d88dd495eb to your computer and use it in GitHub Desktop.
Setting Up React The Easy Way - HTML-1
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Load our custom css file -->
<link rel="stylesheet" href="./index.css">
<title>Setting Up a React Project The Easy Way</title>
</head>
<body>
<div>
<h2>Burger Ingredients 🍔</h2>
<ul>
<li>Salad</li>
<li>Chicken</li>
<li>Meat</li>
<li>Cheese</li>
<li>Bacon</li>
<li>Beef patty</li>
<li>Tomatoes</li>
<li>Lettuce</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment