Created
January 12, 2023 23:03
-
-
Save standiki/04d6396e389875e9f7fe55d88dd495eb to your computer and use it in GitHub Desktop.
Setting Up React The Easy Way - HTML-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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