We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33861ed commit 6e7200aCopy full SHA for 6e7200a
.vscode/settings.json
@@ -0,0 +1,3 @@
1
+{
2
+ "liveServer.settings.port": 5505
3
+}
code/index.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Project GitHub Tracker</title>
8
+ <link rel="stylesheet" href="./style.css" />
9
+</head>
10
+<body>
11
+ <h1>GitHub Tracker</h1>
12
+ <main id="projects"></main>
13
+ <script src="./script.js"></script>
14
+</body>
15
+</html>
code/script.js
code/style.css
+body {
+ background: #FFECE9;
0 commit comments