feat: initial project

This commit is contained in:
Adrien Allard 2024-05-17 14:53:13 +02:00
commit d31076bb24
3 changed files with 21 additions and 0 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode.live-server"
]
}

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Frog Collective Website
The repository contains the Frog Collective website implementation.

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Frog Collective</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css" integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">
</head>
<body>
<h1>Frog Collective</h1>
</body>
</html>