0% found this document useful (0 votes)
12 views7 pages

Notepad++ Installation and HTML Guide

The document provides instructions on how to create a basic HTML resume webpage including headings, paragraphs, lists, tables, links and images using HTML tags and CSS for formatting and styling.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views7 pages

Notepad++ Installation and HTML Guide

The document provides instructions on how to create a basic HTML resume webpage including headings, paragraphs, lists, tables, links and images using HTML tags and CSS for formatting and styling.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Instructions

1 Open the web browser


2 Copy the URL “[Link]
3 Paste in the browser tab
4 Download the latest version of notepad++
5 Install in your systems
6 Create a folder on the desktop with your name
7 Download the PDF file sent and save it in your folder

HTML SKELETON
<html>
<head>
<title>My Resume</title>
</head>
<body>
</body>
</html>

HEADINGS : HTML headings are titles or subtitles that you want to


display on a webpage.
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

PARAGRAPH TAG : HTML paragraphs are defined with the <p> tag:
<p>
Name: Shruthi P
Address: Vidyavardhaka College of Engineering, Mysuru
Email ID: shruthi.p@[Link]
Phone No: 9538787767
</p>

HTML Line Breaks : To display text in new line


<br>

HORIZONTAL TAG : To draw a horizontal line


<hr>

HTML preserve tag : To preserve spaces


<pre>
Name: Shruthi P
Address: Vidyavardhaka College of Engineering, Mysuru
Email: shruthi.p@[Link]
Phone: 9538787767
</pre>

HTML Formatting Tags : To format text displayed


<p>
<b>Name</b>: <i><small>Shruthi P</i></small><br>
<b>Address</b>: <i><small>Vidyavarthaka College of
Engineering</i></small><br>
<b>Email</b>: <i><small>shruthi.p@[Link]</i></small><br>
<b>Phone</b>: <i><small>9538787767</i></small><br>
</p>

<h2><mark>Objective</mark></h2>
<p align = justify>To channelize my credentials towards teaching and
academic activities by contributing to the vision of the institution.
Diversify and up-skill for the positive development of the institution
and in-turn seeking a professional growth.
</p>
HTML Lists
<h2><mark>Summary</mark></h2>
<ul>
<li>[Link] in Computer Engineering</li>
<li>BE in Computer Science and Engineering</li>
<li>Professional work experience of 3 years as Assistant Professor in
Department of Computer Science and Engineering.</li>
</ul>

<h2><mark>Summary</mark></h2>
<ol>
<li>[Link] in Computer Engineering</li>
<li>BE in Computer Science and Engineering</li>
<li>Professional work experience of 3 years as Assistant Professor in
Department of Computer Science and Engineering.</li>
</ol>

CSS Introduction
 CSS stands for Cascading Style Sheets.
 CSS describes how HTML elements are to be displayed on screen,
paper, or in other media.
 CSS saves a lot of work. It can control the layout of multiple web
pages all at once.
 CSS is used to define styles for your web pages, including the
design, layout and variations in display for different devices and
screen sizes.
Types of CSS (Placement/Location of CSS)
1. Inline
2. Internal
3. External

Types of CSS selectors


1. id Selector
2. class Selector
3. Universal Selector
4. Grouping Selector

Color and Text Alignment


<h2 style = "color:red; text-align:center;">Resume</h2>

Background Color
<body style = "background-color: MistyRose;">

Id Selector
<style>
#heading
{
color: red;
text-align: center;
}
</style>

<h2 id="heading">Resume</h2>

Class Selector
<style>
.heading
{
color: red;
text-align: center;
}
</style>

<h2 class="heading">Resume</h2>

Universal Selector
<style>
*
{
color: red;
text-align: center;
}
</style>

Group Selectors
<style>
h2, h3
{
color: red;
text-align: center;
font-family: Impact;
}
</style>

Margins
h2, h3
{
color: red;
text-align: center;
font-family: Impact;
border: 1px solid black;
margin-top: 5%;
margin-bottom: 5%;
margin-right: 5%;
margin-left: 5%;
}

*{
margin-right: 5%;
margin-left: 5%;
}

Tables
<h3><mark>Education Details</mark></h3>
<table>
<tr>
<th>Education</th>
<th>Branch</th>
<th>College/University</th>
<th>Year of Passing</th>
</tr>
<tr>
<td>BE</td>
<td>Computer Science and Engineering</td>
<td>ATMECE</td>
<td>2014</td>
</tr>
<tr>
<td>[Link]</td>
<td>Computer Engineering</td>
<td>PESCE</td>
<td>2016</td>
</tr>
</table>

table, th, td
{
border: 1px solid black;
text-align: center;
margin-left: auto;
margin-right: auto
}

Link
<h3><mark>Reference Links</mark></h3>
<ol>
<li><a href="[Link] my current working
institution</a></li>
<li><a href="[Link] a look of my website
design</a></li>
</ol>

Images
<img src="[Link]" alt="Shruthi.P">

<img src="[Link]" alt="Shruthi.P" style="float:right; width:80px;


height:80px">

Scrolling text
<marquee behavior="scroll" direction="right"
scrollamount="10">Thank You for watching!!!</marquee>

Thank you for active participation!!!

Common questions

Powered by AI

Margins create space around elements, pushing them away from adjacent elements, while borders delineate the edge of an element. In the examples, margins are used to distribute even spacing between the elements and the borderlines, aiding in creating a balanced and visually appealing layout. A specific border setting like '1px solid black' adds a clear perimeter that enhances readability and separability of content, going from basic text to visually structured data .

The <body> tag serves as the container for most of the webpage content, and styling it with CSS allows control over the background color and other visual parameters that affect the entire page. For instance, using a 'background-color: MistyRose;' sets a consistent and visually appealing background that complements other stylistic elements, creating a cohesive design aesthetic .

An 'id' selector is used to style a unique element on a page, identified by a unique #identifier. It's often used when a style needs to apply to a single HTML element. A 'class' selector, designated by a period followed by a class name, can be used to style multiple elements on the same page. This distinction allows for more specific or repeated styling applications depending on web design needs .

HTML supports both ordered and unordered lists. Ordered lists (<ol>) present items in a specific order using numbers or letters, while unordered lists (<ul>) present items with bullet points, indicating no particular sequence. Each list item is defined using the <li> tag. Lists help in organizing content into easily readable formats .

CSS, or Cascading Style Sheets, describes how HTML elements are displayed on different media such as screens or paper. It is important because it saves time by allowing developers to control the layout of multiple web pages simultaneously. CSS is also crucial for defining the design, layout, and varying display styles for different devices and screen sizes, making web pages more adaptable and visually appealing .

The <pre> tag in HTML is used to display preformatted text in which both spaces and line breaks are preserved. This differs from typical HTML text formatting where spaces and line breaks are usually ignored. It's useful for presenting text where the formatting needs to be maintained as it appears in the source code, such as in code examples or structured text .

HTML tables are structured using the <table> tag, containing <tr> for table rows, <th> for headers, and <td> for individual cell data. This structure is beneficial for organizing data into a tabular format, making it easier to interpret and compare information, such as educational details or schedules. Designing with tables provides a clean and systematic presentation of data .

The universal selector, denoted by '*', applies a specific style to all HTML elements within a page. A major advantage is ease of application when a uniform style is desired across an entire site, such as default margin or font settings. However, it can be computationally expensive and may lead to performance issues if not carefully managed, as it affects all elements, potentially overriding more specific styles unintentionally, which can lead to design inconsistencies .

Hyperlinks in HTML, defined using the <a> tag, enable navigation between different resources. They are crucial for linking users to external websites, internal pages, or downloadable files, enhancing the interconnectedness of information on the web. The examples provided include links to the current working institution and a design on Flipkart, demonstrating practical applications of guiding users to specific resources .

HTML headings range from <h1> to <h6>. They are used to define titles or subtitles on a webpage, where <h1> is the most important heading, often used for main page titles, and <h6> is the least important, typically used for sub-sections or minor headings. This hierarchy helps in structuring content for both readability by users and SEO optimization .

You might also like