Skip to main content

Posts

Day 5 of 100 Days Web Development Challenge

Welcome, this is the 5 th day of my 100 days web development challenge. This blog is about what I learnt today, and I have tried to explain it below. Before moving towards today's learnings, lets first look at what i have learnt in last 4 days. Learnings till now in HTML    Days    Topics Code Link Blog Link     Day 1      Syntax     Syntax      Blog     Day 2      Headings and      Lists     Headings     Lists     Blog     Day 3      Formatting Tags     Formatting      Blog     Day 4      Images     Images      Blog Topic: Tables in HTML <thead> tag <tbody> tag Tables in HTML: Tables are used to store and display data in a presentable format. To make a table like above in html, we use the <table> tag. In table, the data is stored i...

Day 4 of 100 Days Web Development Challenge

 Hey, this is my 4 th day of 100 days web development challenge. I started this challenge with learning HTML as it is the foundation for structuring a web page. I have already completed with what is html and it's syntax ,  heading tags and lists , and yesterday completed with  formatting tags  in html.  Today, I have learnt the <img> tag and this blog is about the image tag. Topics: <img> tag <img> attributes Images as a link <img> tag: The <img> tag in html is used for displaying images on a web page. Images make a web page more attractive. The <img> tag is an empty tag, which means it does not has a closing tag. For displaying an image, we need to specify the path of that image. We use the "src" attribute inside the <img> tag to specify the image's path in the form of an URL(Uniform Resource Locator). For example: <img src="image url"> There are two ways in which we can provide the image url: Absolute url: A...

Day 3 of 100 Days Web Development Challenge

Welcome to the 3 rd day of my 100 days web development challenge. It's my day 3 in learning HTML continuously without any day-off and honestly it has been an amazing journey. Yesterday, I learnt about the heading tags and list tags which were pretty simple to understand and quite useful.  Today, I learnt many text formatting tags in html which are useful in changing the appearance of texts written in a web page. Formatting the texts also helps in showcasing their importance and indicate changes. So in this blog I have discussed those formatting tags and tried to explain them. I have also uploaded all the code to my  GitHub  profile. Table of Content: <b> tag <i> tag <u> tag <em> tag <small> tag <big> tag <strong> tag <sub> tag <sup> tag <s> or <strike> tag <br> tag <b> tag: The <b> tag is used to give a bold look to a text or a paragraph. It has both opening and closing tag. To make a tex...

DAY 2 OF 100 DAYS WEB DEVELOPMENT CHALLENGE

 Welcome to the 2 nd day of my 100 days web development challenge. So, basically this is my day 2 of learning HTML. Yesterday, I started this challenge by learning some basics about the HTML language and it's syntax. It was not very hard to understand the syntax, actually it's syntax is way easier than many other languages out there. I wrote a "Hello World" program using HTML and tried to explain the whole 10 to 11 lines of code in the last blog. You can check the  blog  and if you want to see the code it is available on my  GitHub . So, today I proceeded with the  of tag in HTML and implemented them. They are given below. Topics: HTML Headings HTML Lists HTML Headings: Headings are used to display some title or a heading in a web page.  Headings indicate the starting of a new topic or some important text. They are important as it helps the browser to search the content of a web page with the name of the heading.  There are total 6 heading tags in HTM...

DAY 1 OF 100 DAYS WEB DEVELOPMENT CHALLENGE

 Welcome to day 1 of my 100 days web development challenge. Yesterday, I announced this challenge on my blog post. It is a 100 day challenge that I have started to learn web development and improve my coding efficiency. It was a good start as I was able to understand the importance of HTML in website development and learnt some good things that I will be sharing with you all. Below are the topics I learnt today and I have tried to explain it. Table of Content: What is HTML? HTML Syntax and Explanation What is HTML? HTML stands for Hypertext Markup Language and is the standard markup language for structuring the web content. It was released in 1993. As the name suggests, Hypertext means linking one web document to another web document via creating links and Markup means to provide structure to a web page. Structure of a web page simply means where the content should be present, For example, when you open YouTube's website, you see the YouTube's logo on top-left, a long sear...

0/100 DAYS OF WEB DEVELOPMENT CHALLENGE

100 Days Web Development Challenge; Welcome to day 0 of 100 days web development challenge. Don't be confused by reading 0(zero), this is the introductory blog of my 100 days journey of learning web development. As this is an introductory blog that does not contain any code, I have indexed this blog as zero. I have decided to start this challenge because of my procrastination habit. Despite setting a clear goal of becoming a full stack web developer, I'm not enrolling myself totally in learning. And, this habit can cause me my goal of becoming a good developer.  I watched some online videos and read some articles about 100 days of code challenge. Many people started this challenge and saw some wonderful results. They were able to achieve their goals by consistently writing code for 100 days for minimum 1 hour daily. Once they were getting some results, they were exited by seeing their hard work pay off. They gradually increased their learning and coding time which seems to be v...

What is JAVA?

Every IT or Computer Science student and working IT professionals might have heard of Java language. Everyone wants to learn java, whether it be for Web development, Android app development, desktop application development, Game development etc. So in this blog will get to know about Java language and it's features.               What is JAVA?                 Java is a high-level, object-oriented, open source, robust and secure programming language. Java was initiated by James Gosling, Patrick Naughton, Chris Warth, Ed Frank, and Mike Sheridan at Sun Microsystems, Inc in 1991. Java was released in 1995 at Sun Microsystems. The java language was earlier called as "Oak", since Oak was already a registered company it was later renamed as "Java". Later Oracle Corporation  purchased Sun Microsystems and now Java is owned and maintained by Oracle.                Th...

AMP PRACTICAL 10

  Aim: Create an android application to show the notification Activity_Main.xml <?xml version="1.0" encoding="utf-8"?>   <RelativeLayout xmlns:android=" http://schemas.android.com/apk/res/android" xmlns:app=" http://schemas.android.com/apk/res-auto" xmlns:tools=" http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <ImageView android:id="@+id/imageView" android:layout_width="40dp" android:layout_height="40dp" android:layout_margin="8dp" android:layout_marginTop="16dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/a1" /> <Button android:text="click" android:layout_width="wrap_content" android:layout_h...

AMP PRACTICAL 9

  Aim: Create an android Application that open the website www.google.com in the browser on the click of a button (program on internet) Activity_Main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android=" http://schemas.android.com/apk/res/android" xmlns:app=" http://schemas.android.com/apk/res-auto" xmlns:tools=" http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity">   <EditText android:id="@+id/editText1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginTop="44dp" android:ems="10"/> <Button android:id="@+id/button1" android:layout_width="wrap...