By: PaperPlane 5200
To make a website, you will need some knowledge of basic HTML code. The less complex the page is, the less HTML you need to know. There are two other codes that you can use to style your page: CSS and Javascript, but I won't go into that much detail in this website. Then you will need a FTP client program, like FileZilla. Another type of program you will need is a text editor. One that supports HTML tags, like DreamWeaver, is helpful. You will need to buy a domain name from a website like Godady.com and hire someone to point the domain name to a server. Do you want to build a website? The first step is to learn HTML.
The basic structure in HTML is called tags. Tags are used to start headings, lists, paragraphs, etc. The first tag you will learn is the <p> tag. It is used to start a paragraph and is commenly used in HTML. Any tag is inclosed in carrots< >, and the end tag has a slash after the open carrot </. For example, if you wanted to display “Hello World” on your page, you would type:
<p>Hello World</p>
Some tags need attributes, like the <a> tag. The <a> tag is used to create hyperlinks, or links to other web sites. The attribute it needs is href, or the website's URL. When you are defining an attribute, you have the attribute, an equal sign, an open quote(single or double, it doesn’t matter), what you want the attribute to be, and then a close quote(it must be the same type as the first quote). When using the <a> tag, you enclose the hyperlink text in the open and close tags. A link to this webpage that says "this webpage" would look like:
<a href=’https://www.montegraphics.com>this webpage</a>
To create a favicon, you will need to know what one is. A favicon is the icon next to the title of the page. To create one, you will need an image editor, like Photoshop. Create a 32px by 32px canvas and save it as favicon.png in the directory of your website. In the head section of your code, put:
<link rel="icon" href="favicon.png" type="image/png">
To embed videos, you use the <iframe> tag. There are 4 attributes it needs: the width, the height, the web sites the video is on, and the frame border. You also need to tell it if you want to allow full screen. To get the code for a youtube video, you go to the video, click on share, go to the embed tab, and copy and paste the code into the HTML. You don't need to change anything about it; The <iframe> tag and attributes are already there. To embed this video, I used:
<iframe width="560" height="315" src="https://www.youtube.com/embed/NEWkZcp3650?list=PLDMK7KVSBbPfOYw9_wAZagnahjo-nvtgZ" frameborder="0" allowfullscreen></iframe>
Ignore the line breaks in the text; this is because one part couldn't fit on the rest of the previous line.