Skip to content

Instantly share code, notes, and snippets.

View jaimefps's full-sized avatar

Jaime Pericás jaimefps

  • Cypress.io
  • Portland , OR
View GitHub Profile
@jaimefps
jaimefps / .gitignore
Created January 2, 2020 06:12 — forked from ericelliott/.gitignore
Sample Node project .gitignore
node_modules
build
npm-debug.log
.env
.DS_Store
@jaimefps
jaimefps / index.html
Created December 7, 2019 20:58 — forked from chrisvfritz/index.html
Simplest possible HTML template
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>