Posts

Day 7,8 ….WebDev Log

Image
August 01, 2023 August 02, 2023  Hey folks, Jaani Here I'm writing this, the summary of whatever I've learned in the past two days. As I moved to CSS (Cascading Style Sheet) lectures. Things started getting more interesting. At first, when I tried to learn, I got nothing, literally nothing, but then I went to chatGPT and told it that write some CSS code for my webpage, It wrote that in some file named  style.css, and I then inked it top my HTML file, and the result was pretty awesome. After doing all this stuff, then I went to selectors  lecture and tried to understand. The next day I learned about properties and their values, made their notes and applied them on a webpage. I'm adding a screenshot of the webpage in which chatGPT helped in CSS and the style.css code  below style.css /* Reset default margin and padding for all elements */ body , h1 , h2 , h3 , h4 , h5 , h6 , p , ul , li {     margin : 0 ;     padding : 0 ; } /* Set default font sty...

Day 6, July 31

 Hey, Everyone Jaani here, as I proceeded in web dev's HTML last lecture, they taught us how to try to make a structure for our own website using HTML. I had an Idea for making a health website. So I tried it and found it very interesting and a thing upon which I should keep working. I would not suppose to reveal the details of that website now, it could be too early for me to tell y'all ;p  <3 Yeah, but the source code for its basic structure is here, see ya later. <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Way to Project Nhp </ title >     < link rel = "stylesheet" href = "" > </ head > < body >     < header >         < img src = "C:\Users\Ashish\OneDrive\nhp.jpg" width = "350" alt = ...

Day 5 , 30 July 2023

Hey, Everyone, Hope uh all are doing good. Today was a good day and I learned many things as I progressed further in web dev. the first one I learned is how to create a table on a web page using HTML. to insert a table we've to use the  table tag at first and then to add the top row in bold letters, we'll use thead tag, then tr, and then th tags. After closing these nested tags in thead. Then we'll add lower layers, for that we'll use tbody , then tr and td tags as used below. Similarly to add a footer we've to use tfoot and then tr , th tags as we can see in the below code. Basically, th tag adds an element in a table in bold letters. Later, I created a payment form. Learned many things form that too. You can see that after the given code. < br > < table >     < thead >         < tr >             < b >             < th > Name </ th >   ...

Day 4, WebDev...Log 29 July

Hey everyone, this is what I've learned today in web dev 1. Creating Ordered( ol tag), unordered( ul tag), and descriptive( dl tag) lists wrapping up the li tag. 2. Linking the files with the web page, with the help of the ' a ' tag, making the web page open links in a new tab using (target="_blank"). 3. I linked files from my computer, sites from the web, and my own blog page, and added photos(using img tag) and videos(using video tag)( learned to change the width and height of them ) to my web page. 4. Learned to use iframe tag to embed my blog page( https://woofscode.blogspot.com/ ) and my youtube  channels   ( https://youtube.com/@SENORITUbes and  https://youtube.com/@Naavik440 )  on the web page. I also used the many tags amongst what I'd learned yesterday to change the paragraph, insert horizontal lines, and put the headlines. Tomorrow I will finish the all HTML lecture of the web dev course I'm doing. Happy coding and stay inspired! 🚀 Best...

Day #3 WebDev

 Log 28 July, This is what I've done and learned today, p --> paragraph tag b --> bold tag hr --> tag for horizontal line i --> italic text h1>h2>h3>h4>h5>h6 text size tags <!-- tag for comment --> <small> tag for small letter </small> s --> tag for crossing line on sentence/strike through br -->tag for new paragraph/line <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > woofscode </ title > </ head > < body >     < h1 > Ashish Tetarwal welcomes you here &lt; h1 &gt; </ h1 >     < h2 > Ashish Tetarwal welcomes you here </ h2 >     < h3 > Ashish Tetarwal welcomes you here </ h3 >     < h4 > Ashish Tetarwal welcomes you here ...

Day1n2 WebDev

 Hey EveryOne