Skip to content

Instantly share code, notes, and snippets.

View thetrend's full-sized avatar

Grace de la Mora thetrend

View GitHub Profile

Hello!

This is a step-by-step guide on how to deploy a basic React Hello World app to Netlify!

Requirements

First Steps: Creating a basic Vite starter project

  1. npm init vite@latest <project name>
@thetrend
thetrend / html-page.html
Created April 17, 2016 17:24
HTML Basics Tutorial Part 1
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>Hello, World!</p>
<p>This is where your content goes.</p>
</body>
</html>