Hello everyone,
I'm Susan Mary J,
This is my fourth day of Java full stack. For past fourth days we were learning about HTML,CSS & LINUX installation too.
SHORTCUTS:
Ctrl + shift + i - Alinement
Ctrl + s - Save
Shift + 1 - !
! + enter - Default Code
Ctrl + shift + Ctrl- Copy text from terminal
Ctrl + shift + v - Paste text into the terminal
Ctrl + shift + t - Open new terminal
Ctrl + l - clear the terminal
*REASON TO INSTALL LINUX :
*
- Free & open source
- Better security
- Great for programming
- Customizable interface
LINUX INSTALLATION:
STEP-1:Pick the LINUX version*[UBUNTU/LINUX MINT]*
STEP-2:Make a Bootable USB*[Rufus/Etcher]*
STEP-3:Plug in & restart your computer*[Press F12/F2/Esc]*,select the USB drive.
STEP-4:Install LINUX [Choose Language, time zone, username & password]
STEP-5:Finish installation [Wait for few minutes, remove the USB & restart your computer]
HTML:
- Hyper Text Markup Language
- Used to create webpage to display web browser.
- Web pages are created using tags.
- Works for CSS and JavaScript.
- We can work in specific version of html.
- Web technology evolved, html 4 could no longer keep up with modern needs so versio of html 4 changed to html 5.
TAGS:
- - Keywords used to mark and formats parts of a web page.
- Tell the browser how to display content.
<p> - open tags </p>
- close tag
TYPES OF TAGS:
-
<h1>to<h6>
- Size of heading -
<p>
- Paragraph -
<h>
- Heading -
<img>
- Image [Self closing tags] -
<div>
- Block container -
<span>
- Inline container -
<br>
- Line break [No closing tag] -
<hr>
- Horizontal rule [No closing tag]
VERSIONS OF HTML:
- HTML 1.0
- HTML 2.0
- HTML 3.2
- HTML 4.01
- XHTML
- HTML 5
SAMPLE PROGRAM:
`<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple HTML page.</p>
<button onclick="alert('Hello!')">Click Me</button>
</body>
</html> `
Top comments (0)