Question:

How do I do this for HTML in Notepad?

by  |  earlier

0 LIKES UnLike

1. Use Notepad to create a new file called Bank.htm

2. The title of the page should be 'BCA113-your name-HTML Project'.

3. Make the following text Heading 1: Merger Bank

4. Center it on the page.

5. Insert a blank line.

6. Make the following text Heading 3: Grand Opening

7. Center it on the page and underline it.

8. Use Comic Sans MS font for both headings and make the font color green for both.

9. Insert a horizontal line after the heading.

10. Insert an image of a bank/money that you can find by Googling “images of banks” or “images of money”. Center the image on the page under the heading.

11. Insert a horizontal line after the image.

12. Insert the following text paragraph after the image: Hi! Welcome to the Merger Bank of Iowa. We used to have a name that had been around for 30 years. No longer! We have a new name and new owners. We now offer new services at new service charges. Check out our competitive fees.

13. Insert a blank line.

14. Insert the following text - You are invited to attend our Grand Opening. This is your chance to talk to our staff about any changes in services and fees. Check out our new limited hours and new checking account options. We think you will like what you see! Come visit us Thursday from 10:00 a.m. to 10:30 a.m. Refreshments provided. We hope to see you there!

15. Insert two blank lines.

16. Insert the following text - For more information, please e-mail us at mergerbank@iowabank.net

17. Make the underlined portion an e-mail hypertext link.

18. Center the sentence on the page.

19. Insert one blank line.

20. Insert the following text - Created by students at DMACC

21. Center it on the page.

22. Make the text two sizes smaller (-2) than the normal text.

23. Make the word DMACC a hypertext link to the DMACC home page.

 Tags:

   Report

10 ANSWERS


  1. Paste this in Notepad:

    --------------------------------

    <html>

    <head>

    <title>BCA113-your name-HTML Project</title>

    </head>

    <body>

    <h1 style="font-face:Comic Sans MS, sans-serif; color:#006600; text-align:center;">Merger Bank</h1>

    <br>

    <h3 style="font-face:Comic Sans MS, sans-serif; color:#006600; text-align:center; font-style:underline;">Grand Opening</h3>

    <hr />

    <img src="GOOGLE IMAGE URL HERE" alt="Banks / Money" width="" height="" />

    <hr />

    <p>Hi! Welcome to the Merger Bank of Iowa. We used to have a name that had been around for 30 years. No longer! We have a new name and new owners. We now offer new services at new service charges. Check out our competitive fees.</p>

    <br>

    <p>You are invited to attend our Grand Opening. This is your chance to talk to our staff about any changes in services and fees. Check out our new limited hours and new checking account options. We think you will like what you see! Come visit us Thursday from 10:00 a.m. to 10:30 a.m. Refreshments provided. We hope to see you there!</p>

    <br><br>

    <p style="text-align:center;">For more information, please e-mail us at <a href="mailto: mergerbank@iowabank.net" title="Email Us">mergerbank@iowabank.net</a></p>

    <br>

    <p style="font-size:-2em; text-algn:center;">Created by students at <a href="DMACC URL HERE" title="DMACC Homepage">DMACC</a></p>

    </body>

    </html>

    ------------------------------

    Select Save As

    Change the file format to 'All Formats'

    Select a location (Desktop is fine)

    Save the file as Bank.htm

    Edit:

    -----------------------

    I updated it to show all the text. Also, you'll need to update link / image URLs as well as enter the width and height of the image you find.

    Edit:

    ---------------

    I find it humorous that I'm getting more thumbs down for answering the question that was asked than the f'ing spammers on the page. lol


  2. I would recommend learning how to write HTML. If you don't want to learn, then just use a WYSIWYG editor such as Nvu.

  3. Most of this is simply basic html which you can learn at www.w3schools.org. To create a page in html start out with

    <html>

    <head>

    <title>

    </title>

    </head>

    <body>

    </body>

    </html>

    save the file with a .html file extension and it will create a blank html page for you just fill in the blanks to create spaces use
    which will create new lines and to create headings you could use the <h1></h1> tag also be aware that you type what you want to display on your page between the <></> tags : ) I hope this helps but if not you could always learn html at www.w3schools.org they have excellent simple tutorials and they are completely free : ) FREE=GOOD!

  4. If we do it for you, you wont learn any thing. :P

  5. open note pad and create a file with do coding and save it with ".html" extension.

  6. Hi!

    I'll give you tips, but I'm not going to do homework for you. ;)

    Tip 1: Paragraph: <p> </p>

    Tip 2: Links <a href="URL">text</a> (FUNFACT: Mail: <a href="mailto:EMAIL">text</a>)

    Tip 3: Page break: <br>

    Tip 4: Fonts: <font face="__"> changes the font. <font size="_"> changes the size. <font color="__"> changes the color.

  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-...

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <title>BCA113-your name-HTML Project</title>

    <style type="text/css">

    <!--

    .headings {

    color: #00FF00

    font: Comic Sans MS

    }

    -->

    </style>

    </head>

    <body>

    <div align="center">

      <h1 class="headings">Merger Bank</h1>

      <h3 class="headings"><u>Grand Opening</u></h3>

      <hr /></p>

    <img src="http://www.banksintegration.com/Ban... />

    <hr />

    <p align="left">Hi! Welcome to the Merger Bank of Iowa. We used to have a name that had  been around for 30 years. No longer! We have a new name and new owners.  We now offer new services at new service charges. Check out our  competitive fees.</p>

    <p align="left">You are invited to attend our Grand Opening. This is your chance to  talk to our staff about any changes in services and fees. Check out our  new limited hours and new checking account options. We think you will  like what you see! Come visit us Thursday from 10:00 a.m. to 10:30 a.m.  Refreshments provided. We hope to see you there!</p>

    <p> </p>

    <p>For more information, please e-mail us at <a href="mailto:mergerbank@iowabank.net">me...

    <p><font size="-2">Created by students at<a href="http://www.dmacc.cc.ia.us/"> DMACC </a></font></p>

    </div>

    </body>

    </html>

  8. Try looking in the text book that goes along with the html course your taking, we don't have time to do your home work for you.

  9. Open your textbook........

  10. Are you serious? Do your own homework.

    This is the first and last time I'm helping you with this.

    Link to full code: http://www.practiceboard.com/?9615815

    I will let you figure out the last 3 steps.

Question Stats

Latest activity: earlier.
This question has 10 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.