HTML Document
HTML Document
HTML SKELETON
<html>
<head>
<title>My Resume</title>
</head>
<body>
</body>
</html>
PARAGRAPH TAG : HTML paragraphs are defined with the <p> tag:
<p>
Name: Shruthi P
Address: Vidyavardhaka College of Engineering, Mysuru
Email ID: shruthi.p@vvce.ac.in
Phone No: 9538787767
</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>M.Tech 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>M.Tech 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
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>M.Tech</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="http://www.vvce.ac.in/">Vist my current working
institution</a></li>
<li><a href="https://www.flipkart.com/">Take a look of my website
design</a></li>
</ol>
Images
<img src="Shruthi.jpg" alt="Shruthi.P">
Scrolling text
<marquee behavior="scroll" direction="right"
scrollamount="10">Thank You for watching!!!</marquee>