diff --git a/01HTML/Day04/first.html b/01HTML/Day04/Project1.html similarity index 100% rename from 01HTML/Day04/first.html rename to 01HTML/Day04/Project1.html diff --git a/02CSS/Day01/styler.css b/02CSS/Day01/styler.css index f61dfa1..647fb21 100644 --- a/02CSS/Day01/styler.css +++ b/02CSS/Day01/styler.css @@ -1,6 +1,6 @@ /* Tag Elment selector */ -/* h1{ +h1{ background-color: pink; } @@ -12,26 +12,26 @@ h2{ background-color: blue; } */ -/* id base selection # based selection */ +/* id base selection # based selection */ -/* #first{ +#first{ background-color: blue; } #second{ background-color: pink; -} */ +} /* class based selection */ -/* .third{ +.third{ background-color: green; } .fourth{ background-color:blueviolet -} */ +} /* group based selection */ /* @@ -52,7 +52,7 @@ h2{ background-color: #639747; } */ -/* font */ +/* font h1{ font-size: 80px; } @@ -63,8 +63,7 @@ ul{ /* li{ font-size: 2em; -} */ - +} html{ font-size: 40px; } diff --git a/02CSS/Day03/homework.html b/02CSS/Day03/homework.html new file mode 100644 index 0000000..9a4830e --- /dev/null +++ b/02CSS/Day03/homework.html @@ -0,0 +1,16 @@ + + + + + + Document + + + +
+
+
+
+
+ + \ No newline at end of file diff --git a/02CSS/Day03/hw.css b/02CSS/Day03/hw.css new file mode 100644 index 0000000..487ee1b --- /dev/null +++ b/02CSS/Day03/hw.css @@ -0,0 +1,25 @@ +.box1{ + height: 200px; + width: 300px; + background-color: red; + position: relative; +} + +.box2{ + height: 100px; + width: 300px; + background-color: rgb(33, 33, 104); + top: 50px; + position: absolute; +} + +.box3{ + height: 90px; + width: 90px; + background-color: white; + border-radius: 50%; + left: 100px; + top: 5px; + bottom: 5px; + position: absolute; +} \ No newline at end of file diff --git a/02CSS/Day07/project1a.css b/02CSS/Day07/project1a.css index c56a443..9a41645 100644 --- a/02CSS/Day07/project1a.css +++ b/02CSS/Day07/project1a.css @@ -14,11 +14,11 @@ body{ .container{ background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.129); - font-size: 40px; + font-size: 50px; padding: 10px; - color: white; - width: 70%; - border-radius: 5px; + color: red; + width: 80%; + border-radius: 40px; white-space: nowrap; overflow: hidden; } @@ -34,6 +34,6 @@ p{ margin-left: 100%; } to{ - margin-left: -70%; + margin-left: -100%; } } diff --git a/02CSS/Day07/style.css b/02CSS/Day07/style.css index f9765ae..898d6db 100644 --- a/02CSS/Day07/style.css +++ b/02CSS/Day07/style.css @@ -18,7 +18,7 @@ animation-duration: 5s; animation-iteration-count: infinite; animation-timing-function: linear; - animation-direction: alternate; + /* animation-direction: alternate; */ animation-delay: 2s; /* animation-fill-mode: backwards; */ position: absolute; diff --git a/03JS/Day05/index.js b/03JS/Day05/index.js index 4765600..2335055 100644 --- a/03JS/Day05/index.js +++ b/03JS/Day05/index.js @@ -2,7 +2,7 @@ // let a = 10; // let b = 345.6821; // let c = b.toFixed(1); -// console.log(typeof c); +// console.log( c); // console.log(b.toPrecision(4)); // console.log(b.toString()); diff --git a/03JS/Day06/index.js b/03JS/Day06/index.js index 2287c46..388ef05 100644 --- a/03JS/Day06/index.js +++ b/03JS/Day06/index.js @@ -19,7 +19,7 @@ // const b = str.toLowerCase(); // console.log(b); -// const str = `Hello Coder Army Coder`; +// const str = `Hello Coder Army Coder`; // console.log(str.indexOf('Cod')); // console.log(str.lastIndexOf('Cod')); @@ -40,7 +40,7 @@ // console.log(c); // console.log(24+"Rohit"); -// console.log(24+"Rohit"+10); +// console.log(24+" "+"Rohit"+" "+10); // console.log(24+30+"Rohit"); // const str = `Hello Coder Army Coder`; @@ -52,8 +52,8 @@ // const names = "Rohit Mohit Suraj Rohan Anjali"; -// console.log(names.split(" ")) -// console.log(names.split(",")) +// console.log(names.split(" ")) // on basis of Space +// console.log(names.split(",")) // on basis of Comma // const now = new Date(); @@ -84,8 +84,8 @@ // Timestamp const now = Date.now(); const dates = new Date(1759275037293); -// console.log(dates.toString()); +console.log(dates.toString()); -console.log(dates); -console.log(now); +// console.log(dates); +// console.log(now); // 1759272851288: TimeStamp diff --git a/03JS/Day07/index.js b/03JS/Day07/index.js index c243589..59232cb 100644 --- a/03JS/Day07/index.js +++ b/03JS/Day07/index.js @@ -14,11 +14,11 @@ // let arr = [100,30,"Rohit",true]; -// // console.log(arr[2]); -// // console.log(typeof arr); +// console.log(arr[2]); +// console.log(typeof arr); -// // arr[1] = 90; -// // console.log(arr); +// arr[1] = 90; +// console.log(arr); // // push : Insert element at end @@ -32,13 +32,13 @@ // console.log(arr); -// Starting add kar sakta hu, delete the element at first place +// Add at starting index // arr.unshift(10); // arr.unshift(50); // console.log(arr); -// // delete kar sakta hu +// // delete the element from starting index // arr.shift(); // console.log(arr); @@ -46,7 +46,7 @@ // let arr = [10,30,50,90,11]; -// for(let i=0;i" -month.prepend(lister); +month.append(lister); // month.insertAdjacentElement("afterend",lister) diff --git a/03JS/Day14/index.html b/03JS/Day14/index.html index 3508f8e..b367474 100644 --- a/03JS/Day14/index.html +++ b/03JS/Day14/index.html @@ -15,7 +15,18 @@

Hello Coder Army

  • Jan
  • Feb
  • Mar
  • + Aditya Chauhan
  • Apr
  • +
  • May
  • +
  • June
  • +
  • July
  • +
  • August
  • +
  • September
  • +
  • October
  • +
  • November
  • +
  • December
  • +
  • +
  • Ach
  • diff --git a/03JS/Day16/02/index.html b/03JS/Day16/02/index.html index 6275771..7114f68 100644 --- a/03JS/Day16/02/index.html +++ b/03JS/Day16/02/index.html @@ -13,6 +13,8 @@ + + diff --git a/03JS/Day19/index.js b/03JS/Day19/index.js index aab0926..2aeff2d 100644 --- a/03JS/Day19/index.js +++ b/03JS/Day19/index.js @@ -18,6 +18,8 @@ // }) +//Promise Chaining + // fetch("https://api.github.com/users") // .then((response)=>{