Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PCreations/96c51ec3ef5604e9550323d29cbafcd5 to your computer and use it in GitHub Desktop.
Save PCreations/96c51ec3ef5604e9550323d29cbafcd5 to your computer and use it in GitHub Desktop.
fdc3d4f7b2b67aa7fad593fb21cbba8283fb935fcf7230942e0bfd993226394f.diff
-7,6 +7,15 @@ export class AppController {
@Get()
getHello(): string {
- return this.appService.getHello();
+ return `
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Page Title</title> // Je mets ici volontairement le mauvais titre !
+ </head>
+ <body>
+ <p>Hello, World!</p> // Bon ça c'est la ChatGPT Touch, c'était pas utile.
+</body>
+</html>`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment