Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions DAY 01 - INTERNET FUNDAMENTALS/Assignments/README.MD
Original file line number Diff line number Diff line change
@@ -1 +1,86 @@
# Write down whatever you learned :)
at first i would like to say what is HTML:-
HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.
how do we know the file is actually a HTML file:-
.Open your browser and navigate to the page for which you wish to view the HTML.
.Right-click on the page to open the right-click menu after the page finishes loading.
.Click the menu item that allows you to view the source. ...
.When the source page opens, you'll see the HTML code for the full page.
so what is meta data?
Metadata is data (information) about data. <meta> tags always go inside the <head> element, and are typically used to specify character set, page description, keywords, author of the document, and viewport settings. Metadata will not be displayed on the page, but is machine parsable.
what is viewport in HTML?
The viewport is the user's visible area of a web page. The viewport varies with the device, and will be smaller on a mobile phone than on a computer screen. Before tablets and mobile phones, web pages were designed only for computer screens, and it was common for web pages to have a static design and a fixed size.
what is the name of the engine chrome have?
java script(v8)
what is HREF?
HREF stands for hypertext reference .The href attribute specifies the URL of the page the link goes to. If the href attribute is not present, the <a> tag will not be a hyperlink

here are the HTML syntax


<h1>Main Heading</h1>


<h2>Subheading</h2>


<h3>Section heading</h3>


<p>Paragraph text</p>


<br>

<br /> – equivalent syntax (XHTML)


<ul>
<li>List item text</li>
</ul>


<ol>
<li>List item text</li>
</ol>

Text Formatting


<b>words to be made bold</b>

<strong>equivalent syntax</strong>


<i>words to be made italic</i>

<em>equivalent syntax</em>


<u>words to underline</u>


<tt>Shown in fixed-width font</tt>


<span style="…">Uses CSS formatting</span>

<span class="…">Uses predefined style</span>


<div style="…">Uses CSS formatting</div>

<div class="…">Uses predefined style</div>

Hypertext


<a href="url">Link text to click on</a>


<img src="url">

<img src="url" /> – XHTML equivalent


<img src="url" align="left">