Skip to content

Commit

Permalink
init: Quote Generator project files
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhatech002 committed Jan 13, 2024
1 parent 1aa06e3 commit 2faa4e2
Show file tree
Hide file tree
Showing 9 changed files with 2,282 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>intern App</title>
<script type="module" crossorigin src="./assets/index-2jHGDmNZ.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-5BcMEhRq.css">
<link rel="stylesheet" crossorigin href="./assets/index-5BcMEhRq.css" />
</head>
<body class="bg-[#d1d1d79f]">
<header
Expand Down
24 changes: 24 additions & 0 deletions JavaScript/javaScriptDom/06-Quote-Generator-App/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
14 changes: 14 additions & 0 deletions JavaScript/javaScriptDom/06-Quote-Generator-App/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quote generator</title>
<link rel="stylesheet" href="./src/css/main.css" />
</head>
<body>
<h1 class="bg-slate-600">Hello</h1>
<script type="module" src="./src/js/app.js"></script>
</body>
</html>
Loading

0 comments on commit 2faa4e2

Please sign in to comment.