5D8 (Fullstacklab)
5D8 (Fullstacklab)
WEEK-1
Program statement:-
1(a). Write a HTML program, to explain the working of lists.
Note: It should have an ordered list, unordered list, nested fists and ordered list in an unordered
list and definition lists.
Description:-
In HTML, a list is a structured way to present a collection of items. There are three main types of lists
in HTML
1. Ordered List (<ol>) – A numbered list where items are displayed in a specific order.
2. Unordered List (<ul>) – A bullet-point list where the order doesn’t matter.
<head>
<title>web page</title>
</head>
<body>
<h3>ORDERED LIST</h3>
<ol>
<li>lion</li>
<li>tiger</li>
<li>horse</li>
</ol>
<li>CSE</li>
<li>ECE</li>
<li>EEE</li>
</ol>
<ol type="I">
<li>moon dal</li>
<li>peanuts</li>
<li>tasty nuts</li>
</ol>
<h3>UNORDERED LIST</h3>
<ul TYPE="circle">
<li>gobi</li>
<li>noodles</li>
<li>egg rice</li>
</ul>
<ul TYPE="square">
<li>PANIPURI</li>
<li>VADAPAV</li>
<li>SAMOSA</li>
</ul>
<h3>NESTED LIST</h3>
<ol>
<li>fruits
<ol>
Dept. of CSE SREC,Nandyal Page 2
FULL STACK DEVELOPMENT-I Regd No: 23X51A05D8
<li>apples</li>
<li>guava</li>
</ol>
</li>
<li>states
<ol>
<li>TAMILNADU</li>
<li>KERELA</li>
<li>GOA</li>
</ol>
</li>
</ol>
<h3>DEFINATION LIST<h3>
<dl>
<dt>IAS-</dt>
<dt>IPS-</dt>
</dl>
</body>
</html>
Output:
Program statement:-
1(b). Write a HTML program, to explain the working of hyperlinks using <a> tag
and href, target Attributes.
Description:-
HyperLink:
The <a> tag defines a hyperlink, which is used to link from one page to another. The most important
attribute of the <a> element is the href attribute, which indicates the link's destination.
Source code:-
<html>
<body>
<title>'web page'</title>
<a href="https://www.w3schools.com">
<h4>THIS IS MY LINK</h4><br>
</a>
<a href="https://www.dramahood.in/info/because-i-want-no-loss-2024">
<h4>VISIT MY CHANNEL</h4><br>
</a>
<a href="https://myasiantv.com.lv/">
<h4>THIS IS MY PAGE</h4><br>
</a>
<a href="https://dai.ly/xGasgq8">
<h4>THIS IS MY CHANNEL</h4>
</a>
</body>
</html>
Output:
Program statement:-
1(c). Create a HTML document that has your image and your friend’s image
with a specific height and width. Also when clicked on the images it should
navigate to their respective profiles.
Description:-
Image:
The <img> tag creates aholding space for thereferenced image. The <img> tag has two required
attributes: src - Specifies the path to the image.
Source Code:-
<html>
<head>
<title>web page</title>
</head>
<body>
Output:
Program statement:-
1(d). Write a HTML program, in such a way that, rather than placing large images
on a page, the preferred technique is to use thumbnails bysetting the height and width
parameters to something like to 100*100 pixels. Each thumbnail image is also a link
to a full sized version of the image. Create an image gallery using this technique.
Description:-
Image as hyperlink:
An image as alink is an image that can be clicked on to navigate to aspecific URL. It's
also known as an HTML image link.
Source Code:-
<html>
<head>
<title>lists of images</title>
<body>
<a href="C:\Users\madhu\Desktop\pig.jpeg">
<img src="C:\Users\madhu\Desktop\buffalow.jpeg">
<a href="C:\Users\madhu\Desktop\cow.jpeg">
<img src="C:\Users\madhu\Desktop\cat.jpeg">
</a>
<a href="C:\Users\madhu\Desktop\rabbit.jpeg">
</a>
</body>
</html>
Output:
WEEK-2
Program statement:-
Source Code:-
<html>
<head>
<title>Table</title>
</hea>
<body>
<center>
<table border="2px"cellspacing="0"cellpadding="5">
<tr>
<th> S no </th>
</tr>
<tr>
<td>1</td>
<td>madhu</td>
<td>101</td>
<td rowspan="2">CSE</td>
<td>8.1</td>
<td>8.5</td>
</tr>
<tr>
<td>2</td>
<td>sai</td>
<td>102</td>
<td>8.8</td>
<td>8.G</td>
</tr>
<tr>
<td>3</td>
<td>jittu</td>
<td>103</td>
<td>CSM</td>
</tr>
</table>
</center>
</body>
</html>
Output:
Program statement:-
2(B). Write a HTMLprogram, to explain theworking oftables by preparing a
timetable. (Note: Use <caption> tag to set the caption to the table s also use cell
spacing,cellpadding,border,rowspan, colspan etc.).
Source Code:-
<html>
<head>
<title>TABLE</title>
</head>
<center>
<tr>
<th>DAY</th>
<th>1st period</th>
<th>2nd period</th>
<td rowspan="7">BREAK</td>
<th>3rd period</th>
<th>4th period</th>
<td rowspan="7">LUNCH</td>
<th>5th period</th>
<th>6th period</th>
<th>7th period</th>
</tr>
<th>MON</th>
<td>DBMS</td>
<td>PsS</td>
<td colspan="2">TRAINING</td>
<td>QUANT</td>
<td>SE</td>
<td>OB</td>
</tr>
<tr>
<th>TUES</th>
<td>QUANT</td>
<td>ENGLISH</td>
<td colspan="2">TRAINING</td>
<td>PsS</td>
</tr>
<tr>
<th>WED</th>
<td colspan="2">TRAINING</td>
<td>ENGLISH</td>
<td>OS</td>
<td>QUANT</td>
</tr>
<tr>
<th>THURS</th>
<td>OS</td>
<td>ENGLISH</td>
<td colspan="2">TRAINING</td>
<td>SE</td>
<td>OB</td>
<td>DBMS</td>
</tr>
<tr>
<th>FRI</th>
<td>OB</td>
<td>DBMS</td>
<td colspan="2">TRAINING</td>
<td>ENGLISH</td>
<td>DTI</td>
<td>SE</td>
</tr>
<tr>
<th>SAT</th>
<td>OS</td>
<td>QUANT</td>
<td>MM</td>
<td>PsS</td>
<td>DTI</td>
</tr>
</table>
</center>
</body>
</html>
Output:
Program statement:-
2(c). Write a HTML program, to explain the working of forms by designing
Registration form.(Note: Include text field, password field, number field, date of
birth field, checkboxes, radio buttons, list boxes using
<select>s<option> tags, <text area> and two buttons ie: submit and reset.
Use tables to provideabetterview).
Description:-
type="password": A password field that hides input characters. type="number": Allows numeric input.
type="date": Provides a date picker for selecting adate. type="checkbox": Allows multiple
selections (checkboxes).
Source Code:-
<html>
<head>
<hr>
<form>
<div>
<td>
<td>
<td>
</div>
<br>
<div>
<tr> <td>
<td>
<td>
<td>
</div> </table><br>
<div>
<label>Languages Known:</label>
value="English">
<label for="english">English</label>
value="hindi">
<label for="hindi">hindi</label>
value="telugu">
<label for="telugu">telugu</label>
</div>
<hr>
<div>
<label>Gender:</label>
<label for="male">Male</label>
<label for="female">Female</label>
<label for="other">Other</label>
</div>
<hr>
<div>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="G">G</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="1G">1G</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="2G">2G</option>
<option value="30">30</option>
<option value="31">31</option>
</select>
<option value="">MM</option>
<option value="Jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
<option value="Jun">Jun</option>
<option value="Jul">Jul</option>
<option value="Aug">Aug</option>
<option value="Sep">Sep</option>
<option value="Oct">Oct</option>
<option value="Nov">Nov</option>
<option value="Dec">Dec</option>
</select>
<option value="">YYYY</option>
<option value="2000">2000</option>
<option value="2001">2001</option>
<option value="2002">2002</option>
<option value="2003">2003</option>
<option value="2004">2004</option>
<option value="2005">2005</option>
<option value="2006">2006</option>
<option value="2007">2007</option>
<option value="2008">2008</option>
<option value="200G">200G</option>
<option value="2010">2010</option>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
<option value="2017">2017</option>
<option value="2018">2018</option>
<option value="201G">201G</option>
<option value="2020">2020</option>
</select>
</div>
<hr>
<div>
</div>
</form>
</div>
</body>
</html>
Output:
Program statement:-
2(d). Write a HTML program, to explain the working of frames, suchthat page is to
bedivided into 3 parts on either direction. (Note: first frame image, second frame
paragraph, third frame hyperlink. And also make sure of using “no frame”
attribute such that frames to be fixed).
Description:-
Frames:
The <frame> HTMLelement defines a particular area in which another HTML document
can be displayed. A frame should be used within a <frameset> . Using the <frame>
element is not encouraged because of certain disadvantages such as performance
problems and lack of accessibility for users with screen readers.
Source Code:-
Image SourceCode:-
<html>
<head>
<title>web page</title>
</head>
<body>
</body>
<html> Paragraph
Code:
<html>
<head>
<title>web page</title>
</head>
<body>
<h1>FAMILY</h1>
<p>A family is a group of people who are related by blood, marriage, or adoption and typically live
together. It is a fundamental unit of society, providing emotional, financial, and social
support.Families come in many forms, from traditional nuclear families to extended families that
include grandparents, uncles, aunts, and cousins.</p>
</body>
</html>
<body>
<title>'web page'</title>
<a href="https://www.w3schools.com">
<h4>THIS IS MY LINK</h4><br>
</a>
<a href="https://www.dramahood.in/info/because-i-want-no-loss-2024">
<h4>VISIT MY CHANNEL</h4><br>
</a>
</body>
</html>
Frame Source Code:-
<frameset cols="10%,20%,30%">
<frame src="C:/madhu/img4.html">
<frame src="C:/madhu/para.html">
<frame src="C:/madhu/1-2.html">
</frameset>
Output:
WEEK-3
Program statement:-
Explanation of Tags:
<header>: Contains the website's title.
Source Code:-
<html>
<head>
<title>web page</title>
</head>
<body>
<h2>Details Tag</h2>
Dept. of CSE SREC,Nandyal Page 31
FULL STACK DEVELOPMENT-I Regd No: 23X51A05D8
<nav>
<a href="/html/">HTML</a>
<a href="/python/">Python</a>
</nav>
<hr>
<h2>
<span style="color:green;background-color:blue"></span>india</h2>
<hr>
<h2>Aside Tag</h2>
<aside>
<h4>college</h4>
<p>A college is an instituation of higher education that offers a range of academic programs</p>
</aside>
<hr>
<h2>Details Tag</h2>
<details>
<summary> INDIA
</summary>
</p>
</details>
<hr>
<article>
<h1>Article Tag</h1>
<p>Social media is a computer technology that lets people share ideas, opinions, and information through online
networks and communities. </p>
</article>
<HR>
<figure>
<figcaption> FLOWER
</figcaption>
</figure>
<hr>
<h2>Header Tag</h2>
<article>
<header>
<h3>reletives</h3>
</header>
</article>
<hr>
<footer>
<p><a href="mailto:madhu@example.com">madhu@example.com</a></p>
</footer>
<hr>
<h2><u>Main Tag</u></h2>
<main>
<article>
<p>The hill stations are high-altitude towns for recreation, enjoyment and are used as a place of refuge to escape
the blistering heat in India during summertime.</p>
</article>
</main>
</hr>
<h2>
<u>span tag</u></h2>
</p>
<style>
</body>
</html>
Output:
Program statement:-
3(B). Write a HTML program, to embed audio and video into HTML web
page.
Description:-
Audio:
The <audio> tag is used to embed sound content in a document, such as music or other audio
stream.
Video:
The HTML <video> element is used to show a video on a web page.
Source Code:-
<html>
<head>
<title>Video Example</title>
</head>
<body>
<h2>Video Example</h2>
<video width="300" height="300" Controls>
<source src="E:\www.5MovieRulz.vet - Guntur Kaaram (2024) v2 1080p Telugu HQ HDRip -
HEVC - (DD+5.1 - 192Kbps & AAC) - 1.8GB - ESub.mkv"> Your browser does not support the
video element.
</video>
<p>video essay is an essay presented in the format of a video recording or short film rather than a
conventional piece of writing.</p>
<h2>Audio Example</h2>
<audio controls>
</audio>
<p>An audio essay is a recorded piece that combines spoken words with sound effects, music,
and other audio elements. </p>
</body>
</html>
Output:
Program statement:-
3( c ). Write aprogram to applydifferent types (or levels ofstyles or style specification formats) -
inline, internal, external styles to HTMLelements. (identify selector, property and value)
Description:-
Inline CSS:
Inline CSS refers to applying styles directly to an HTML element using the style attribute. This method
allows for specific styling to be applied to individual elements without affecting other elements on
the page.
Selector: Inline styles do not use a selector like classes or IDs. The style is applied directly to the
element.
Property: The CSS property (e.g., color, font-size, background-color) to be styled. Value: The
Internal CSS :
Internal CSS refers to styling that is defined within a <style> tag placed in the <head> section of an
HTML document. It is used to style multiple elements on the same page without affecting external
styles.
External CSS :
External CSS refers to defining styles in a separate CSS file (typically with a .css extension) and
linking it to an HTML document using the <link> tag in the <head> section. This method is highly
efficient for styling multiple pages consistently across a website.
Inline Source Code:-
<html>
<body>
<title>web page</title>
<p style="color:red;">Farmers play a vital role in sustaining the economy and providing food
security.</p>
<p style="background-color: powderblue;">Their contribution are the foundation of agricultural industries and rural
economies.</p>
<p style="font-family:verdana;">Farmers are individuals or entities engaged in agriculture, the practice of
cultivating crops or raising livestock to produce food, fiber, and other products. They play a crucial role in
sustaining human life and the global economy. </p>
<p style="font-size:25;">Crop Farmers: Focus on growing crops such as grains, fruits, vegetables, or cash
crops like cotton and coffee.</p>
<p style="border: 5px dashed green;">Farmers are the backbone of the country.</p>
</body>
</html>
Output:
<html>
<head>
<style> body {
background-color:skyblue;
h1{
text-decoration:underline;
p{
color: red;
.state{
#program{
background-color:tomato; padding:30px;
}
</style>
</head>
<body>
<h1>HELLO WOrld</h1>
<p>Hello, World!" is one of the most well-known and widely used phrases in the programming world. It is
commonly used as the first program that beginners write when learning a new programming language. The
phrase serves as a simple introduction to the syntax and structure of a programming language while
demonstrating basic output functionality.</P>
<h2 class="state">country</h2>
<p>It's a pollution less area.In the past, villages were a usual form of community for societies that practice
subsistence agriculture and also for some non-agricultural societies. In Great Britain, a hamlet earned the
right to be called a village when it built a church.[5] In many cultures, towns and cities were few, with only a
small proportion of the population living in them. The Industrial Revolution attracted people in larger
numbers to work in mills and factories; the concentration of people caused many villages to grow into towns
and cities. This also enabled specialization of labor and crafts and the development of many trades. The trend
of urbanization continues but not always in connection with industrialization. Historically, homes were
situated together for sociability and defence, and land surrounding the living quarters was farmed.
Traditional fishing villages were based on artisan fishing and located adjacent to fishing ground.</p>
<h2 id="program">town</h2>
</body>
</html>
Output:
background-color: lightblue;
h1 {
color: navy;
margin-left:
20px; text-
align:center;
p{
color:tomat
o;
padding:30p
x;
.void{
color:deepgre en;
text- align:center;
padding:30px;
margin:20px;
}
HTML Source Code1:-
<html>
<head>
<body>
<h1>INDIAN ARMY</h1>
<p>The Indian Army not only plays a leading role in defending the borders of the country, but also
makes exceptional contributions in disaster management, peacekeeping, and humanitarian
assistance. It is a symbol of pride and trust for every Indian.</p>
<p>The Indian Navy is the maritime branch of the Indian Armed Forces. The President of India is
the Supreme Commander of the Indian Navy. The Chief of Naval Staff, a four-star admiral,
commands the navy. As a blue-water navy, it operates significantly in the Persian Gulf Region, the
Horn of Africa, the Strait of Malacca, and routinely conducts anti-piracy operations and partners
with other navies in the region.</p>
</body>
</html>
Output:
<head>
</head>
<body>
<h1>Kanchipuram
</h1>
<p>The temple's sanctum sanctorum houses the main deity, Goddess Kamakshi, in a seated
posture, radiating grace and compassion. Kanchi Kamakshi Amman Temple is also one of the 18
astadasha shakti peethas. Pilgrims flock to seek the blessings of the goddess, who is believed to
fulfill the wishes of her devotees.</p>
</body>
</html>
Output:
<head>
</head>
<body>
<h1>WINTER SEASON</h1>
<p>Winter begins at the winter solstice. In the northern hemisphere, the winter solstice is usually
December 21 or December 22. In the southern hemisphere, the winter solstice is usually June 21 or
June 22. Some animals hibernate in this season. In temperate climates there are no leaves on
deciduous trees. People wear warm clothing, and eat food that was grown earlier. Many regions
have snow in winter.</p>
<p>South-west monsoon lasting from June to September. The season is dominated by the humid
southwest summer monsoon, which slowly sweeps across the country beginning in late May
or early June. Monsoon rains begin to recede from North India at the beginning of October.
South India typically receives more rainfall.</p>
</body>
</html>
Output:
<html>
<head>
</head>
<body>
<h1>Artificial Intelligence</h1>
<p>Artificial Intelligence (or simply A.I.) is a 2001 American science fiction film directed by Steven
Spielberg. The screenplay by Spielberg and screen story by Ian Watson are loosely based on the
1G6G short story "Supertoys Last All Summer Long" by Brian Aldiss. Set in a futuristic society, the
film stars Haley Joel Osment as David, a childlike android uniquely programmed with the ability to
love. Jude Law, Frances O'Connor, Brendan Gleeson and William Hurt star in supporting
roles.Development of A.I. originally began after producer and director Stanley Kubrick</p>
<p>Machine learning (ML) is a field of study in artificial intelligence concerned with the
development and study of statistical algorithms that can learn from data and generalize to unseen
data, and thus perform tasks without explicit instructions. Within a subdiscipline in machine
learning, advances in the field of deep learning have allowed neural networks, a class of statistical
algorithms, to surpass many previous machine learning approaches in performance.</p>
</body>
</html>
Output:
WEEK-4
Program statement:-
4. Write a program to apply different types of selector forms
Simple CSS selectors are used to target HTML elements in order to apply styles. They are basic and
straightforward selectors that do not require complex logic or structure.
Source Code:-
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
color: blue;
}
/* Class Selector */
.highlight {
background-color: yellow;
}
/* ID Selector */
#main-title {
font-weight: bold;
}
/* Group Selector */
h1, p {
text-align: center;
}
</style>
</head>
<body>
<h1 id="main-title" class="highlight">Hello, World!</h1>
</body>
Output:-
1. Descendant Selector (Space): Targets elements nested anywhere inside a parent (e.g., div p).
2. Child Selector (>): Targets elements that are direct children of a specified parent (e.g., div > p).
<html>
3. Adjacent Sibling Selector (+): Targets the next sibling element immediately after a specified
element (e.g., h1 + p).
4. General Sibling Selector (~): Targets all sibling elements that share the same parent (e.g., h1 ~ p).
Source Code:-
<html>
<head>
<style>
div >p{
background-color:yellow;
}
</style>
</head>
<body>
<p>1.Tata was regarded as a visionary leader, and his legacy is one of compassion and innovation
that transcends the confines of the corporate realm to impact millions of ordinary lives.In the 1960s, the
modelling world established modelling agencies. Throughout Europe, secretarial services acted as models'
agents charging them weekly rates for their messages and bookings. For the most part, models were
responsible for their own billing. In Germany, agents were not allowed to work for a percentage of a
person's earnings, so they referred to themselves as secretaries. Except for a few models travelling to Paris
or New York, travelling was relatively unheard of for a model. Most models only worked in one market
due to different labour laws governing modelling in various countries. In the 1960s, Italy had many fashion
houses and fashion magazines but desperately needed models. Italian agencies often coerced models to
return to Italy without work visas by withholding their pay.[7] They would also pay their models in cash,
which models would have to hide from customs agents. It was not uncommon for models staying in hotels
such as La Louisiana in Paris or the Arena in Milan to have their hotel rooms raided by the police looking
for their work visas. It was rumoured that competing agencies were behind the raids. This led many
agencies to form worldwide chains; for example, the Marilyn Agency has branches in Paris and New
York.</p>
<div>
<p>2. In his lifetime he received two of India's highest civilian honors—the Padma Vibhushan (2008)
and the Padma Bhushan (2000).In the 1960s, the modelling world established modelling agencies.
Throughout Europe, secretarial services acted as models' agents charging them weekly rates for their
messages and bookings. For the most part, models were responsible for their own billing. In Germany,
Dept. of CSE SREC,Nandyal Page 56
FULL STACK DEVELOPMENT-I Regd No: 23X51A05D8
agents were not allowed to work for a percentage of a person's earnings, so they referred to themselves as
secretaries. Except for a few models travelling to Paris or New York, travelling was relatively unheard of
for a model. Most models only worked in one market due to different labour laws governing modelling in
various countries. In the 1960s, Italy had many fashion houses and fashion magazines but desperately
needed models. Italian agencies often coerced models to return to Italy without work visas by withholding
their pay.[7] They would also pay their models in cash, which models would have to hide from customs
agents. It was not uncommon for models staying in hotels such as La Louisiana in Paris or the Arena in
Milan to have their hotel rooms raided by the police looking for their work visas. It was rumoured that
competing agencies were behind the raids. This led many agencies to form worldwide chains; for example,
the Marilyn Agency has branches in Paris and New York.</p>
<p>3.Ratan Tata's success story includes winning the third- and second-highest civilian awards in India,the
Padma Bhushan in 2000 and the Padma Vibhushan in 2008, respectively.In the 1960s, the modelling world
established modelling agencies. Throughout Europe, secretarial services acted as models' agents charging
them weekly rates for their messages and bookings. For the most part, models were responsible for their
own billing. In Germany, agents were not allowed to work for a percentage of a person's earnings, so they
referred to themselves as secretaries. Except for a few models travelling to Paris or New York, travelling
was relatively unheard of for a model. Most models only worked in one market due to different labour laws
governing modelling in various countries. In the 1960s, Italy had many fashion houses and fashion
magazines but desperately needed models. Italian agencies often coerced models to return to Italy without
work visas by withholding their pay.[7] They would also pay their models in cash, which models would
have to hide from customs agents. It was not uncommon for models staying in hotels such as La Louisiana
in Paris or the Arena in Milan to have their hotel rooms raided by the police looking for their work visas. It
was rumoured that competing agencies were behind the raids. This led many agencies to form worldwide
chains; for example, the Marilyn Agency has branches in Paris and New York.[</p>
<p>4.Along with national civilian accolades,the success story of Ratan Tata also includes a number of state
civilian honors.In the 1960s, the modelling world established modelling agencies. Throughout Europe,
secretarial services acted as models' agents charging them for a percentage of a person's earnings, so they
referred to themselves as secretaries. Except for a few models travelling to Paris or New York, travelling
was relatively unheard of for a model. Most models only worked in one market due to different labour laws
governing modelling in various countries. In the 1960s, Italy had many fashion houses and fashion
magazines but desperately needed models. Italian agencies often coerced models to return to Italy without
work visas by withholding their pay.[7] They would also pay their models in cash, which models would
have to hide from customs agents. It was not uncommon for models staying in hotels such as La Louisiana
in Paris or the Arena in Milan to have their hotel rooms raided by the police looking for their work visas. It
was rumoured that competing agencies were behind the raids. This led many agencies to form worldwide
chains; for example, the Marilyn Agency has branches in Paris and New York.[</p>
</div>
</body>
Output:
i) desendent selector(space):-
sourcecode:-
<html>
<head>
<style>
div p {
background-color:green;
}
</style>
</head>
<body>
<h2>Desendent selector</h2>
<p>1.The desendent selector matches all the elements that are desendents of a specified element.In the 1960s,
the modelling world established modelling agencies. Throughout Europe, secretarial services acted as models'
agents charging them weekly rates for their messages and bookings. For the most part, mols were responsible
for their own billing. In Germany, agents were not allowed to work for a percentage of a person's but
desperately needed models.It was rumoured that competing agencies were behind the raids. This led many
agencies to form worldwide chains; for example, the Marilyn Agency has branches in Pas and New York.</P>
<div>
<p>2.Environment means all the natural. the surrroundings such as land,air,water ,a plants.In the 1960s, the
modelling wld established modelling agencies. Throughout Europe, secretarial services for models staying in
hotels such as La Louisiana in Paris or the Arena in Milan to have their hotel rooms raided by th led many agies
to form worldwide chains; for example, the Marilyn Agency has branches in Paris and New York.</p>
<p>3.A clean eironment is necessary life on the earthIn the 1960s, the modelling world established modelling
agencies. Throughout Europe, secretarial services acted as models' agents charging them weekly rates for their
messages and bookings. For the most part, models were responsible for their own billing. In Germany, agents
were not allowed to work for a percentage of a person's earnings, so they referred to themselves that competing
agencies were behind the raids. This led many agencies to form worldwide chains; for example, the Marilyn
Agency has branches in Paris and New York.</P>
<selection>
<p>4.there are many different types of environmental issues are there In the 1960s, the modelling world
establish modelling agencies. Throughout Europe, secretarial services acted as models' agents charging them
weekly ratmessages and bookings. For the mosdels were responsible for their own billi raids. This led many
agencies to form worldwide chains; for example, the Marilyn Agency has branches in Paris and New
York.[</p></selection></div>
<p>5.Envirionment issues increasing day by day.In the 1960s, the modelling world established modelling
agencies. Throughout Europe, secretarial services acted as models' agents charging them weekly rates for their
messages competing agencies were behind the raids. This led many agencies to form worldwide chains; for
example, the Marilyn Agency has branches in Paris and New York.[</p>
</body>
</html>
Output:
heard of for a model. Most models only worked in one market due to different labour laws governing modelling in
various countries. In the 1960s, Italy had many fashion houses and fashion magazines but desperately needed
models. Italian agencies often coerced models to return to Italy without work visas by withholding their pay.[7]
They would also pay their models in cash, which models would have to hide from customs agents. It was not
uncommon for models staying in hotels such as La Louisiana in Paris or the Milto have their hotel rooms raided by
the police looking for their work visas. It was rumoured that competing agencies were behind the raids. This led
many agencies to form worldwide chains; for example, the Marilyn Agency has branches in Paris and New
York.[</p>
<p>4.Along with national civilian accolades,the success story of Ratan Tata also includes a number of state
civilian honors.In the 1960s, the modelling world established modelling agencies. Throughout Europe,
secretarial services acted as models' agents charging them weekly rates for their messages and bookingsFor the
most part, models were responsible for their own billing. In Germany, agents were not allowed to work for a
percentage of a person's earnings, so they referred to themselves as secretaries. Except for a few models
travelling to Paris or New York, travelling was relatively unheard of for a model. Most models only worked in
one market due to different labour laws governing modelling in various countries. In the 1960s, Italy d many
fashion houses and fashion magazines but desperately needed models. Italian agencies often coerced models to
return to Italy without work visas by withholding their pay.[7] They would also pay their models icash, which
models would have to hide from customs agents. It was not uncommon for models staying in hotelsuch as La
Louisiana in Paris or the Arena in Milan to have their hotel rooms raided by the police looking for their work
visas. It was rumoured that competing agencies were behind the raids. This led many agencies to form
worldwide chains; for example, the Marilyn Agency has branches in Paris and New York.[</p>
</div>
</body>
</html>
Output:-
iv)nextsubiling:
source code:-
<html>
<head>
<style>
div +p{
background-color:blue;
}
</style>
</head>
<body>
<p>1.Two fundamental techniques allow AI to work effectively, Machine Learning (ML), and Deep Learning
(DL).ML and DL create the environment for AI to function.In the 1960s, the modelling world established
modelling agencies. Throughout Europe, secretarial services acted as models' agents charging them weekly
rates for their messages and bookings. For the most part, models were responsible for their own billing. In
Germany, agents were not allowed to work for a percentage of a person's earnings, so they referred to
themselves as secretaries. Except for a few models travelling to Paris or New York, travelling was relatively
unheard of for a model. Most models only worked in one market due to different labour laws governing
modelling in various countries. In the 1960s, Italy had many fashion houses and fashion magazines but
desperately needed models. Italian agencies often coerced models to return to Italy without work visas by
withholding their pay.[7] They would also pay their models in cash, which models would have to hide from
customs agents. It was not uncommon for models staying in hotels such as La Louisiana in Paris or in Milan to
have their hotel rooms raided by the police looking for their work visas. It was rumoured that competing
agencies were behind the raids. This led many agencies to form worldwide chains; for example, the Marilyn
Agency has branches in Paris and New York.</p>
<div>
<p>2.ML is a computer’s built-in tools and algorithms that “learn,” or use existing data to produce accurate
predictions In the 1960s, the modelling world established modelling a p a person's earnings, so they referred to
themselves as secretaries. Except for a few models travelling to Paris or New York, travelling was relatively
unheard of for a model. Most models only worked in one market due to different labour laws governing
modelling in various countries. In the 1960s, Italy had many fashion magazines but desperately needed models.
Italian agencies often coerced models to return to Italy without work visas by withholding their pay.[7] They
would also pay their models in cash, which models would have to hide from customs agents. It was not
uncommon for models staying in hotels such as La Louisiana in Paris or the Arena oured that competing
agencies were behind the raids. This led many agencies to form worldwide chains; for example, the Marilyn
Agency has branches in Paris and New York.</p>
</div>
<p>3. machine learning platform can use information from a number of different data sources In the 1960s, the
modelling world established modelling agencies. Throughout Europe, secretarial services acted as models'
agents charging them weekly rates for their messages and bookings. For the most part, models were responsible
for their own billing. In Germany, agents were not allowed to work for a percentage of a person's earnings, so
they referred to themselves as secretaries. Except for a few models travelling to Paris or New York, travelling
was relatively unheard of for a model. Most models only worked in one market due to different labour laws
governing modelling in various countries. In the 1960s, Italy had many fashion houses and fashion magazines
raids. This led many agencies to form worldwide chains; for example, the Marilyn Agency has and New Y
Output:-