File tree 4 files changed +38
-0
lines changed
4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 " />
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
6
+ <!-- <link
7
+ rel="stylesheet"
8
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
9
+ integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
10
+ crossorigin="anonymous"
11
+ /> -->
12
+ < link rel ="stylesheet " href ="style.css " />
13
+ < title > My Project</ title >
14
+ </ head >
15
+ < body >
16
+ < h1 > Project Starter</ h1 >
17
+ < script src ="script.js "> </ script >
18
+ </ body >
19
+ </ html >
Original file line number Diff line number Diff line change
1
+ @import url ("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" );
2
+
3
+ * {
4
+ box-sizing : border-box; // to avoid width problems if padding
5
+ }
6
+
7
+ body {
8
+ font-family : "Roboto" , sans-serif;
9
+ display : flex;
10
+ flex-direction : column;
11
+ align-items : center;
12
+ justify-content : center;
13
+ height : 100vh ;
14
+ overflow : hidden; // to hide scrollbars
15
+ margin : 0 ;
16
+ }
Original file line number Diff line number Diff line change
1
+ # 50 Projects In 50 Days - HTML, CSS & JavaScript: Examples
2
+
3
+ Some examples based on [ 50 Projects In 50 Days - HTML, CSS & JavaScript] ( https://www.udemy.com/course/50-projects-50-days/ ) by Brad Traversy (2020).
You can’t perform that action at this time.
0 commit comments