Q:

Create an html page named as \" SimpleTags.html \". with following tags details

belongs to collection: HTML Examples

0
Problem:- 
 
Create an HTML page named as " Simpletags.html " Add the following tags detail. or HTML simple tags example with source code or How to Create a Simple Web Page With HTML. 
 
Conditions:-
 
1. Set the title of the page as " Simple HTML Tags " 
2.  Within the body perform the following.
 
a)Moving text = “Simple HTML Tags” 
b) Different heading tags (h1 to h6) 
c) Paragraph 
d) Horizontal line e
e) Line Break 
f) Block Quote(single quote ‘,double “) 
g) Pre tag 
h) Different Logical Style ( <b>, <sub>, <sup>….) 
i) Different Physical style ( <strike>, <del>, …) 
j) Listing tags (types with, & each type provide different “type” attribute) 
h)Align tag
 
How to Solve:- So basically we have to create a web page and save the page with " Simpletags.html ", in this way our first condition is full fill Now comes to the second condition here we can see that there are many sub-conditions so basically we need to sort out all condition and Basic Condition in a Single web page Name " Simpletags.html ".
 
Explanation:- The first step is to open a Notepad / Notepad++ / Sublime text editor and create a document and save with the extension .HTML or .html or .htm and paste the below code into the editor and press ctrl+s for save the file and open the save file with your any browser. If you are facing a problem to open in the browser right-click on the save file and choose open with then select the browser or you can set browser for all HTML type of file.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Mainpage.html

<html>
<body>
<a href="frames.html" target="two">navigation frame</a><br>
<a href="floatingframe.html" target="two">floating frame</a><br>
<a href="Noframe.html" target="two">no frame</a><br>
<a href="mixedframe.html" target="two">mixed frame</a><br>
</body>
</html>

Frame.html

<html>
<frameset cols="20%,35%,*" scrolling="no" noresize>
<frame name="one" src="MainPage.html"></frame>
<frame src="aa.gif"></frame>
<frame name="two" src="hulk.gif"></frame>
</frameset>
</html>

Floatingframe.html

<html>
<body>
<p> Explanation: There is a problem with the page you are trying to reach and it
cannot be displayed.
Try the following: * Refresh page: Search for the page again by clicking the Refresh
button. The timeout may have occurred due to Internet congestion.
* Check spelling: Check that you typed the Web page address correctly. The
address may have been mistyped.
* Access from a link: If there is a link to the page you are looking for, try accessing
the page from that link.
If you are still not able to view the requested page, try contacting you
<iframe src="bb.gif" height="225" width="500">
</iframe>
<iframe src="MainPage.html" height="50%" width="50%">
</iframe>
</body>
</html>

Mixedframe.html

<html>
<frameset cols="30%,*">
<frame src="pic.html"></frame>
<frameset rows="50%,*">
<frame src="video.html" autostart="true">
<frame src="Q3.html" >
</frameset>
</frameset>
</html>

navigationframe.html

<html>
<frameset cols="25%,*" scrolling="no" noresize>
<frame name="one" src="MainPage.html">
</frame>
<frame name="two" ></frame>
<frameset rows="30%,*">
<frame src="hulk.gif">
</frame>
</frameset>
</html>

pic.html

<html>
<body>
<img src="ghanendra.jpg" height="650" width="400">
</body>
</html>

video.html

<html>
<body bgcolor="aqua">
<embed src="aa.mp4" width="600" height="300" autostart="true">
</embed>
</body>
</html>

Output:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Create A HTML Page Of Different Type Of List (Like... >>
<< Create An HTML Page With Different Frames Such As ...