How to create an html web page. Creating an HTML page in Notepad: explanations for dummies

: HTML - hypertext markup language (or hypertext markup language).

So let's get to know him better.

First, create a file on your computer with any name and extension.html (title must be in English- for example index.html). To create such a file, create a regular text document ("Start" - "All Programs" - "Accessories" - "Notepad") and save ("File" - "Save As") it anywhere by entering the name and extension (it happens that when you enter an extension, notepad still saves it as a text file, but we need a web file. To do this, before saving, select the file type - “All files (*.*)”).

This is not a prerequisite (since you can change the name of the first page in the server settings), but a rule of good manners. The name of the first page is preferably index (index.html), since the server, when accessing it, produces a file with the same name - index.

When saved correctly, the file icon should change to the browser icon (Internet Explorer by default).

Now open this file using Notepad and copy the following code there.

This is the first web page!

Save and open in a browser.

Congratulations, you have just created your first web page.

Text "This is the first web page!" You can change it to any other one, for example, “This is my first web page!!!” save, update the browser, and admire the result.

But our page doesn't have a title.

We need to fix this - we’ll correct the code a little, or rather we’ll add a “Site Head” to it using tags And .</p><p> <html> <head> <title>First page This is my first web page!!!

Save, update, admire. Our page now has a title.

Description of tags.

The very first tag is (this tag is paired, i.e. the closing tag required) - it is used as a container inside which all the contents of the page (text, images, etc.) are located. Although this tag ( And) is optional, but its use indicates good manners. Therefore, I advise you to use it.

Next tag - . This is also a paired tag ( And). This tag is not displayed on the page (except for the title), but it is necessary to indicate additional page parameters - page description (used by search engines), keywords (used by search engines), styles, scripts, title, etc.

Tag </b>- paired tag ( <title>And), is required to indicate the page title. Moreover, this tag must be placed only inside the tag !

And the last tag in our code is - . Also a paired tag ( And), inside which is the entire visible part of the site, i.e. texts, pictures, links, in general information that you want to place on the site.

In the next lesson we will talk about the types of tags and the rules for writing them.

Or, or better yet, all four, because many HTML elements display differently in different browsers, and it's best to keep that difference under control.

In addition to the browser, we will need at least some kind of text editor, for example, Notepad from Windows or Notepad, but ideally Dreamweaver. The program is needed to prepare HTML files, and the browser is needed to view and control what has been produced. Using these tools, we will create a WEB site on our own local computer, after which we will place it on one of the WWW servers on the Internet, thus making your WEB pages accessible to the whole world.

Preparing to create a WEB site

As an example, let's prepare WEB pages for a company. Let's call it "SD Company", let's say that it works in the field of automatic control systems. The purpose of the WEB site is to tell the world about the company, its scope of activity, and to find partners and customers.

Our WEB site files require a separate folder.

Make a folder named WEB on any hard drive of your computer. Now let’s launch the Notepad program and get to work.

Open a program, for example Notepad, by clicking the Start button on the Taskbar and selecting Programs - Accessories - Notepad from the menu that appears.

You can use any other text editor. But in this case, you should save the file as plain text to avoid including third-party formatting marks in the WEB document.

First, let's introduce the main tags that determine the structure of any HTML document. Let us remind you that in HTML code you can use any case of characters - upper or lower.

1st tags

Enter subsequent main tags using the keyboard, placing any of them, not counting the closing tag, in the newest line.

To enter paired tags, you will be able to use copy and paste operations via the Windows clipboard, followed by the addition of a slash /.

Let us remember that the 1st And last tags mean the beginning and end of the document, element … defines the WEB page title, element …- the body of the document, and in the element We will now indicate the title of the WEB page.

Between the opener and closing use tags to insert the title of the document - SD Company. This element should look like this:

SD Company

Let us remind you that the title of a WEB page should be small and show its content to the greatest extent.

Our next task is to insert into the body of the document between the tags … a small text greeting to the guests of the WEB page.

Insert a blank line between the tags And and enter the following text in it:

Welcome to the SD company page! Here you will learn about our activities, about the software products of our company and about the equipment that we produce.

For each WEB page you can find the background color and text color. This is done using the bgcolor and text attributes of the opening tag. . There are two options for defining a color as an attribute value:

  • verbal indication of the color name, for example, white. HTML provides sixteen such names;
  • a numerical designation in hexadecimal notation, for example, "#ffffff" - snow-white, which shows how the color is formed from the main colors - reddish, greenish and blue.

Coloring the first WEB page

Naturally, verbal indication of color is more comfortable and understandable. On the other hand, numerical designations provide more ability because they allow you to actually indicate any of the 16,777,215 colors, while verbal designations are limited to only sixteen colors.

Let's list some color names: black (dark), gray (grayish), red (reddish), green (greenish), aqua (blue).

As an example, we use a blue color for the background of our WEB page, and a yellowish color for the text.

Insert it into the opening tag attributes bgcolor="blue" and text="yellow". This tag should look like:

In addition to specifying the color, you can also use a sketch prepared in advance for the background of the WEB page. But we will talk about this in the future.

In the Notepad program window, select the menu command File - Save. The Save As dialog appears on the display.

Open the WEB folder you created earlier, in which all WEB site files must be saved.

In the File name input field, enter other.html - that’s what we’ll call this file.

Please note: you must specify the extension of the HTML file name so that the browser can open it. You can also write htm, but this is an outdated format and its use is strictly not recommended.

Let's see the result of the work

Now you can view the results of our work.

Without closing it, minimize the Notepad window.

Using Explorer (Windows Explorer), open the WEB folder in which you saved the other.html file, and double-click on its icon. The default browser will be launched and the other.html document will open in its window.

You see, the title of the browser window indicates the title of the document that we entered in the element , and the color of the background and text of the page is the same as indicated in the tag . The text appears in one paragraph and is aligned to the left.

The text font size may be larger or smaller in your browser than in the picture. In this case, select the menu command View - Font Size - Medium (View - Text Size - Medium) in the Internet Explorer browser to set the font size to medium.

It should be understood that different browsers may display the contents of the same HTML file differently. Therefore, when developing WEB pages, it is better to always view the results in all the more popular browsers - Internet Explorer, Opera, Mozilla. In this case, you will be convinced that the guest of your WEB site will see exactly what you want to show him.

View the created file in another browser. At this stage of work, the differences will not be noticeable.

Without closing, minimize browser windows.

Because in the element We entered text without breaking it into paragraphs, then in the browser it is displayed as the 1st paragraph and aligned to the left. Now we need to give the text a nicer look.

Lesson 2.

Let's create the first html page.

In this lesson, you will follow my instructions to create your first web page. For now, you don’t need to delve into what kind of incomprehensible symbols you will have to use. In this lesson we create a page, and in the next two lessons we will fully understand each character written.

The first thing we do is create a folder on the desktop and give it the name “Site”. All our further creation will take place in this folder.

Now we launch the Notepad++ notepad that we installed. (If you haven't done this yet, here are the installation instructions). By default, the program should be in the /Program Files/Notepad++/ directory, or you can launch it through Start. Open the program and paste the following text into it:

<html>
<head>
<title>My first website </title>
</head>
<body>
Hello! This is my first web page!
</body>
</html>

Most RuNet sites consist of html pages written in UTF-8 encoding. In order for our pages to be displayed correctly in the browser, we will also use this encoding.

Now we need to save our file in html format.

Don't forget that Notepad++ is a text editor, which means that at the moment we have a regular text file with a set of characters. In order for our browser to display the text page we created as a web page, we need to make it a file with the html extension.

To do this, click the “File” button in the top menu, then “Save As”, select the directory (path) where the file will be saved, save it in the folder we created: Desktop/Site/, then most importantly, select the desired file type, in in our case it is Hyper Text Markup Language (html).


Congratulations! You've just created your first web page! Now you can go to the "Site" folder and run the created file. The page will open using a browser, and you will see that instead of the incomprehensible symbols that we inserted, the browser displays completely understandable information on the screen.

MOSCOW INSTITUTE OF OPEN EDUCATION
DEPARTMENT OF MATERIAL AND INFORMATION TECHNOLOGIES

Distance course materials
"Information technologies and education"

Polilova Tatyana Alekseevna
[email protected]

How to create a web page

The easiest way to create a web page is to use Microsoft Office tools. The latest versions of this package provide the ability to convert a regular document into HTML format with good code quality.

Word Features

A document prepared in the Word text editor can be easily converted into a web page. However, it will not look as attractive as you would like if additional steps are not taken. Let's look at a few examples.

Let's take some text.

We convert the document into a web page using the Save as web page... operation (called from the main menu - File item). Then the html representation of the document will look like:

The first thing that catches your eye is that the text takes up the entire screen space. The string length is too long. For comfortable reading on the screen, the number of characters per line should be in the range of 50-65.

Using a table

In this case, you can do it quite simply: create a table in the source document and place the desired text in it. You can set a frame in the table. Then the appearance of the web page will be much improved, and the page will look more attractive in the browser.

Background and style

It is advisable to choose a background that is not too bright so that the text can be read clearly on it. Such a background in the proposed list is, for example, Rice paper. The page view has changed noticeably:

Inserting a picture

You can add a picture to a document, taking it, for example, from a collection of clips.

You need to right-click on the picture, perform a copy operation, and then in the document specify the location for the picture and perform the paste operation of the copied object.

If you insert a picture inside a paragraph, then it is better to change the properties of the picture by setting the text to wrap around the picture (you need to select the main menu item Format and then Picture):

This will not create any extra empty space in the document.

Finally, you can add a frame and shadow to the picture using the buttons on the Drawing panel - Line Type and Shadow Style. Such nuances significantly add expressiveness to the page.

If the Drawing panel is not on the page, you need to install it by selecting the main menu item View and then Toolbars and Drawing.

Ticker

Word allows you to add other design elements to a web page, such as a “creeping line”. To use this feature, you need to open the web components panel on the screen (from the main menu - View, then Toolbars and Web Components). Clicking the Ticking Line operation button opens an additional window for specifying the text of the creeping line parameters.

As usual, you can change the font and attributes of a line: font size and character color. The web page will look like this on your screen:

We have given an example of only a very modest set of design techniques with which you can design a web page based on an existing document in Word format.

Using design templates

If you are starting to create a page from scratch, you can use the Web Page Wizard, which will help you create a document in a dialogue. Or you can use a ready-made page design template, choosing it from a fairly representative set. To do this, in the Create operation, select the Create using a template mode and then General templates. A form will appear on the screen in which you need to select the Web pages tab:

The user can choose the color and style independently, for example, using the Format - Theme settings.

Creating hyperlinks and bookmarks

The last issue that we plan to consider in this section is the creation of hyperlinks in a document.

If we want to refer in a document to another document or another site on the Internet, then such a hyperlink can be made like this: select a piece of text (a word) in the document and perform the operation Insert - Hyperlink... A form will appear on the screen in which you specify the hyperlink address. The address can be entered explicitly or the file can be selected in the window.

Here you should remember that the address of the selected file on your computer may change when you create your site. Therefore, the implicit method of specifying an address is only suitable if the structure of your folder on your computer and on the Internet site is the same.

If a hyperlink should refer to another part of the same document, then you must first insert a bookmark at the beginning of the desired fragment. You need to perform the operation Insert - Bookmark, and enter the name of the bookmark in the form that appears on the screen.

Web Presentation in PowerPoint

PowerPoint is a program designed for creating presentations on a computer. However, it has the function of converting a prepared presentation into a web format.

You can open the prepared presentation and perform the operations (from the main menu) File - Save as web page. As usual, you need to specify the name of the web presentation in the window that opens. As a result of converting the presentation, a file with the specified name and extension .htm and a folder of the same name with additional materials will be created.

If you now call the web presentation from the browser, you can see the result of the conversion on the screen.

A special line is created at the bottom of the screen, where buttons for moving to slides and buttons for setting various parameters for viewing presentations are located.

The presentation can be viewed with the slide structure shown. But if this information is not of interest, then the field on the screen reserved for displaying the structure can be removed (operation expand/collapse structure in the bottom line).

Using the Show Stores button, you can view the slides in full screen.

Creating hyperlinks

In a presentation, you can create hyperlinks that link objects on a slide, for example, to other slides. In this way, it is possible to create a hypermedia structure that will naturally correspond to the ideology of the Internet. Let us explain this technique with an example.

Let us have several prepared slides on the topic of the flora of Lake Baikal, compiled from a collection of photographs. Let's create a new slide - a table of contents for the collection.

If the new slide is not the first in the sequence, then you need to go to the slide sorter mode (from the main menu using the View - Slide Sorter operations) and drag the new slide to the beginning of the collection.

Place small copies of all photographs on a new slide. The easiest way to do this is in the most straightforward way: copy all the photographs in the collection sequentially onto an empty slide, reduce their size and place them, for example, in two lines. The pictures can later be decorated with frames with shadows. You can add the title of your presentation to the table of contents slide. The presentation view in Slide Sorter mode is shown below:

Let's switch to the normal slide viewing mode (commands View and then Normal). On the table of contents slide, select the photo and execute the command Insert - Hyperlink. In the window that opens, set the transition via hyperlink - the number of the slide with the large photograph from which the smaller sample for the table of contents was copied.

Similarly, we will link other pictures on the table of contents slide with the corresponding slides with the original photographs.

If we now run our presentation, it will work like a hypermedia structure: when you click on a small photo, it will go to a slide with a larger photo.

It remains to improve our structure quite a bit. Let's add an arrow to each slide with a photo in its upper left part (AutoShape on the Drawing toolbar), and make a hyperlink from this arrow that will go to the table of contents slide. Now the movement through the hypermedia structure we have created will become “two-way”: from the table of contents you can go to slides with photographs, and from any slide you can return to the table of contents.

After converting the presentation to web format, our first page will look like this:

Clicking on a picture from the menu will take you to a slide with a large photo, and clicking on the arrow (at the top left of the slide) will take you to the collection's table of contents page.

The site is actually a collection of code files in several languages. And the code can be written in any normal text editor, even in Notepad. Of course, it is better to use more advanced software, like Notepad++ or full-fledged development programs. Well, okay, let's see how to make a website in a notepad using html and css.

How to create a website from scratch in HTML in Notepad - step-by-step instructions

And here it is our keyword - HTML. It is from this language that the creation of a website begins. It is impossible to imagine web development without it. It's like trying to cook soup without water. Don't rush to close the page if you are an absolute zero in html. In this step-by-step instruction, we will create a simple website together, and I will try to explain the pieces of code that we will add to the notepad.

Step 1: Create files

Creating an html website in notepad, you need to start by creating two text documents in some empty folder. One should receive the extension .html, and the second .css. The names can be anything. Please note, not site.html.txt, but site.html.

To do this, when saving the document manually, add an extension to it using a dot. We do the same manipulation with the second file, but we give it the .css extension. Oh yeah, don't forget to select the encoding UTF-8.

Step 2. Laying the structure

The files have been created and you can start working. Open the html document. This is where the main work will take place. The building block of this language is tags—special words in angle brackets that tell the browser what to display on a web page.

Let's insert something into our document, otherwise it's completely empty.

Hello, world! Hello World!

So, we inserted a bunch of tags at once and maybe you don’t understand anything. Try opening the page in your browser. There you will see the words "Hello World" if everything is done correctly. This is, in fact, the simplest web page.

html is a container for all other tags. It contains the entire web page.
At the very top we indicated the document type. The head tag is service information about the page. Here we are using the tag set the name of the page, which will be displayed in the browser line at the top. Next, we set the encoding and included the css file using the tag <link> .</p><p>As you can see, there are paired and single tags. Now I will not dwell on this in detail, it depends on what functions the team performs.</p><h3>Step 3: Planning</h3><p>Now let's leave the code alone for a minute and think. What do you think a typical web resource consists of? Of course, there are many of them on the network and they are all different, but there are some identical structural elements, right? For example, vertical and horizontal menus, side columns, headers (the very top where the logo is located) and the footer (the bottom of the site).</p><p>So, let’s plan how to make our first simple website. In this matter, everything needs to start with planning. It is necessary to highlight the structural parts of the future template, what it will consist of. Let's say our simple template will have a header, a body part, a side column and a footer or footer (the same thing).</p><h3>Step 4. Let's get started!</h3><p>This means we need 4 main blocks. In html it is possible to nest an unlimited number of other tags in a paired tag, so I suggest the following method: <br>Create one common container in which all our 4 main blocks will be located.</p><p>So let's get back to the code. We will write it in the body tag, since it represents the future page. You can safely remove the inscription <b>"Hello World"</b>, and write this:</p><p> <div id="main"> <div id="header">This is our hat</div> <div id="sidebar">This is a sidebar</div> <div id="content">This is content</div> <div id="footer">Basement</div> </div> </p><p>Thus, we created one large block in which we placed the remaining 4. The block in html is created by a paired div tag, which does not have any required attributes, but I immediately added a unique id to each of them in order to later design the appearance via CSS.</p><p>Copy this code for yourself and refresh the page in your browser. For now you just see 4 lines of text in front of you, but that’s okay, now we’ll turn them into a website!</p><p><img src='https://i0.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/2-1.jpg' height="89" width="160" loading=lazy loading=lazy><br></p><h3>Step 5. CSS will help us</h3><p>Now let's start designing our blocks. Of course, you need to start with the largest container. We created a css file at the very beginning, but never wrote anything to it. It's time to fix this. Let's add the following code there:</p><p>*( box-sizing: border-box ) #main( width: 810px; margin: 0 auto; border: 5px solid black )</p><p>The first rule sets the behavior for blocks so that padding and borders do not increase their width. Further in the code we refer to the block with the identifier main , to do this, just put a hash and add the name of the identifier. Immediately after this, curly braces open, listing the appearance rules that will apply to the element.</p><p>We set the width of the overall container to 810 pixels, the margin: 0 auto rule sets the block to the center, that is, our site will be displayed nicely in the center, and not pressed to the left edge. The last property, border, adds a black solid border to each side of the block.</p><p><img src='https://i2.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/3-1.jpg' height="98" width="181" loading=lazy loading=lazy><br></p><p>Well, we have created styles for the main container. On the web page we still display 4 lines of text, but in a black frame. Go ahead.</p><p>Now is the time to customize the appearance of the four main building blocks of our page. I will immediately provide the code and comment on it below.</p><p>#header( height: 100px; border-bottom: 5px solid black ) #sidebar( width: 200px; height: 500px; float: left; border-right: 5px solid black ) #content( width: 600px; float: right; height : 500px ) #footer( height: 75px; clear: both; border-top: 5px solid black; )</p><p>As you can imagine, I'm simply referring to elements with different IDs, describing them from top to bottom. First, the styles are set for the header - I set the height to 100 pixels and a border at the bottom so that it is separated from the rest of the blocks.</p><p>But then things get more interesting. The fact is that by default blocks are displayed from top to bottom if you simply write them in html code and do not set any additional rules. But the side column is only a side column, to be displayed to the side of the main part of the page. And how to do it? Look, we set the sidebar’s height, width, frame and one more property (float: left).</p><p>This rule means that the element will be pushed to the left edge of the parent (that is, the parent element - the #main block). Great, now we’ll set the same property to the block with the content and it will also be pressed to the left edge, but after the side column.</p><p>Of course, the content gets more width, because that’s how it should be, but we set the height the same. On a real website, there will usually be a lot of information in the main block, so you don’t have to set the height at all. The same goes for a sidebar if information is constantly being added to it. But for the sake of example, we explicitly specified the height so that the sizes of the blocks can be clearly seen.</p><p>Finally, it remains to describe the last block - <b>footer</b>. It gets a small height, a frame with a height and another new property for us. This is the clear property with the value both . Why write it? We have pressed the two previous blocks to the left edge. They became the so-called floating blocks, but by default ordinary blocks may not notice floating blocks and run over them.</p><p>To prevent this from happening, our basement received the following command: they say, look, it’s an ordinary block, there are two floating ones above you. Notice them and position yourself lower than them. This is the command essentially given by the clear: both property, which forces a regular block to be positioned below all floating ones.</p><p>Great, now refresh the page in your browser. Well, it’s already much more like a website, at least in structure.</p><p><img src='https://i0.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/sajt-v-bloknote.jpg' width="100%" loading=lazy loading=lazy></p><h3>Step 6. Decorate the site</h3><p>The next, very interesting stage - let's add some colors to our site. Let it not have a solid white background, but something more interesting. You can set the background in two ways:</p><ul><li>General background for the entire site at once, assigning it to the common container #main</li><li>If each of the main blocks should have its own shade of color, then you need to set a color for each separately. But it’s better not to get carried away too much - a red header, green content and a yellow basement will not look very good, I’ll tell you right away</li> </ul><p>I suggest doing it using the first method. I found a nice light blue shade in an online service, which I propose to use as the background of the site. Add the following property to the general container styles:</p><p>#main( background: #B3C1E6 )</p><p><img src='https://i0.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/fon.jpg' width="100%" loading=lazy loading=lazy></p><p>We update the page and make sure that our site has a nice light blue color scheme. Now I propose to advance the design level a little - let the background of the header and footer be darker than that of the other blocks. You can add the following lines of code:</p><p>#header, #footer( background: #9091DA )</p><p><img src='https://i1.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/4-1.jpg' width="100%" loading=lazy loading=lazy></p><p>Here we used a new technique - we wrote two blocks separated by commas and the new background will be applied to both of them.</p><h3>Step 7. Working on the header</h3><p>Further work will consist of decorating individual blocks to a more attractive state. Let's start with the header. What do we usually have in our hat? That's right, a beautiful site name and logo. This is what we will add.</p><p>I suggest starting with the logo. Since we are creating the site using html, we will place the logo of this language in the left corner of the header. I found this cute logo on the Internet.</p><p>It needs to be downloaded and placed in the same folder where the html document is stored. <br>Now let's look:</p><p>#header( background: #9091DA url(html.jpeg) no-repeat 5% center )</p><p>I called the picture html, and its format is jpeg, so this is the entry. Then we also specified the following commands: the background image should not be repeated, but should be placed with a 5% horizontal offset from the beginning of the block and vertically centered. The horizontal position is always recorded first, and then the vertical.</p><p>Naturally, if your picture is called differently or has a different format, then you must slightly change the given code. Great, we have a logo. It's time to remove the inscription - this is the site header and put a beautiful title in its place. Let's remove the text from the header and insert a new element there:</p><p> <div id="header"> <div id="title">Name of the site</div> </div> </p><p>Now you need to formalize it:</p><p>#title( font-size: 32px; float: left; margin-left: 200px; font-family: Tahoma; color: yellow; padding-top: 20px; text-shadow: 0 0 5px orange; )</p><p>We've set a decent amount of styling: font size, font family, header left alignment, left padding, color, top padding, and text shadow. There is no point in explaining how each property works now, so just copy the code and paste it into the style sheet (css file).</p><p>That's it, the simple hat is ready. Of course, on a real website it may contain some other links, addresses, etc. Well, let's add something for realism. This html code must be inserted into the content of the site header.</p><p> <ul id="about"> <li>About Us</li> <li>Blog</li> <li>Feedback</li> </ul> </p><p>It generates a list of their three links. In reality, they should lead somewhere, but for us they are just empty links. We will also create a list and links in it.</p><p>#about( float: right; list-style: none; margin-right: 50px ) #about a( color: yellow; )</p><h3>Step 8. Making a menu in the side column</h3><p>Typically, the side column contains the site menu and many other widgets. Let's make a simple menu there. Again, the list with which we have already displayed links in the header will help us with this, but since the main menu is supposedly larger, there will be more links.</p><p> <ul class="menu"> <li>Menu item1</li> <li>Menu item2</li> <li>Menu item3</li> <li>Menu item4</li> <li>Menu item5</li> <li>Menu item6</li> </ul> </p><p>Menu( list-style: none )</p><p>Actually, I wrote down only one rule here - I removed the markers from the list items, everything else is fine. You can also add a title before the menu and design it somehow. You can do this yourself. Headings are written in paired tags <h1> - <h6>, where the first is the largest (article title) and the last is the smallest, often it is not used at all. For the menu title in the side column, it is optimal to use <h3>.</p><h3>Step 9. Design the content block</h3><p>Well, why formalize it there? You need to add some text to make it look like a real website with an article.</p><p> <h1>Article title</h1> <p>And here there will be some article...</p> <p>The content in the article is divided into paragraphs and subheadings...</p> <h2>Subtitle of the article</h2> </p><p>Any content can be inserted into a content block. The paragraphs in it form the main content, and the h1-h2 tags form the headings and subheadings. Tag <b>h1</b> must be the only one on the page.</p><p>The design in this case is to determine the color of the text. For example, you can put brown. Headings can be highlighted in a slightly different shade. I won’t give any code here, you can figure it out yourself.</p><h3>Step 10. Decorating the basement</h3><p>To be honest, I have no desire to shove anything into the basement right now. On real sites, it contains copyright information, sometimes it contains menus and links to other sites. I'll just write the word copyright there and center it like this:</p><p>#footer( text-align: center )</p><h3>Step 11. Oh no, no more steps</h3><p>That's all, actually. The process of creating the simplest HTML template can be considered complete. We have a logo, a site name, a menu, an article, a footer. In general, this is a very primitive site, but still a site.</p><p><img src='https://i2.wp.com/dolinacoda.ru/wp-content/uploads/2016/01/sajt-tselikom.jpg' width="100%" loading=lazy loading=lazy></p><p>Of course, the site looks in such a way that you want to never look at it again, but this does not change the essence. Looking good is the job of a web designer.</p><h3>What should we do with it next?</h3><p>The purpose of this article was simply to show you how to create a simple website using html and css. You can work on its design and the result may be something attractive. But you still need to remember that this is a static site. If new pages are added to it, then this is done manually, by creating new html documents.</p><p>This method of managing a website is a thing of the past, although it has its advantages. To put a website online, you must upload all the html files, style sheet and necessary images to some hosting, paid or free. You also need to register the name of the site so that it is called something. A third-level domain can be obtained for free from many companies, but you will have to pay for a second-level domain <b>(.ru, .com, .ua, etc.)</b></p><p>What we did with you during this article is called website layout. If you want to manage your website using a convenient visual editor, then the already made layout will need to be integrated with any of the popular engines. Best with <b>WordPress</b>.</p><p>This is a separate topic - integration is in many ways much more complicated than the layout itself. To learn how to create websites for the engine, you need to take a good training course. Free information on the Internet may not be enough for you. I described the process of creating a website on Wordpress, but there you will not find information on how to integrate an html template with the engine.</p><p>The article presented the so-called block layout method, that is, we placed all the content in blocks. Today this is still the most popular method. In general, it is advisable to use HTML5 tags in the process rather than just blocks, but for the sake of simplicity, the simplest option was used in this article.</p><p>I hope you have at least a minimal idea of ​​how to make an html website in Notepad or any other text editor.</p> <script>document.write("<img style='display:none;' src='//counter.yadro.ru/hit;artfast_after?t44.1;r"+ escape(document.referrer)+((typeof(screen)=="undefined")?"": ";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth? screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+";h"+escape(document.title.substring(0,150))+ ";"+Math.random()+ "border='0' width='1' height='1' loading=lazy loading=lazy>");</script> </div> <div class="comment_box" id="comments"> </div> </div> <div id="sidebar"> <div class="widget widget_nav_menu" id="nav_menu-2"> <div class="menu-mainmenu-container"> <ul id="menu-mainmenu-2" class="menu"> <li class="submenu"><a href="https://viws.ru/en/category/internet/">Internet</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/programs/">Programs</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/instructions/">Instructions</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/browsers/">Browsers</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/windows-10/">Windows 10</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/android/">Android</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/ios/">iOS</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/communication/">Connection</a> </li> </ul> </div> </div> <div class="widget"> <div class="heading star">The last notes</div> <div class="popular_posts"> <div class="news_box"> <a href="https://viws.ru/en/standartnyi-nagruzochnyi-test-1s-standartnyi-nagruzochnyi-test.html" class="thumb"><img width="95" height="95" src="/uploads/2bc88c7460c0c6dc56bf8fa04d4ff3fc.jpg" class="attachment-mini size-mini wp-post-image" alt="Standard load test" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/standartnyi-nagruzochnyi-test-1s-standartnyi-nagruzochnyi-test.html">Standard load test</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/aliekspress-ne-ishchet-telefony-chto-delat-esli-propali-zakazy-v-lichnom-kabinete.html" class="thumb"><img width="95" height="95" src="/uploads/3ea3b7507423c9b8858724e854f269b5.jpg" class="attachment-mini size-mini wp-post-image" alt="What to do if orders in your personal account on Aliexpress are missing?" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/aliekspress-ne-ishchet-telefony-chto-delat-esli-propali-zakazy-v-lichnom-kabinete.html">What to do if orders in your personal account on Aliexpress are missing?</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/ne-pokazyvaet-ekran-v-skaipe-igrah-reshenie-problem-s-demonstraciei.html" class="thumb"><img width="95" height="95" src="/uploads/e6460c00b45a4d9c9713e956bf073116.jpg" class="attachment-mini size-mini wp-post-image" alt="Solving problems with screen sharing on Skype" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/ne-pokazyvaet-ekran-v-skaipe-igrah-reshenie-problem-s-demonstraciei.html">Solving problems with screen sharing on Skype</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/smart-tv-vybor-operacionnoi-sistemy-umnogo-televizora-operacionnaya.html" class="thumb"><img width="95" height="95" src="/uploads/f83bf6d87257f5eba353491c49bcb723.jpg" class="attachment-mini size-mini wp-post-image" alt="Tizen operating system in Samsung Smart TV Webos operating system in lg TVs" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/smart-tv-vybor-operacionnoi-sistemy-umnogo-televizora-operacionnaya.html">Tizen operating system in Samsung Smart TV Webos operating system in lg TVs</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/kolichestvo-argumentov-funkcii-esli-prilozheniya-microsoft-excel-chto-zhe-takoe-funkciya-v.html" class="thumb"><img width="95" height="95" src="/uploads/ddafc343643dcab4f4fe6f19dbbf6d90.jpg" class="attachment-mini size-mini wp-post-image" alt="What is a function in Excel?" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/kolichestvo-argumentov-funkcii-esli-prilozheniya-microsoft-excel-chto-zhe-takoe-funkciya-v.html">What is a function in Excel?</a> </div> </div> </div> </div> </div> <div class="widget"> <div class="heading star">Popular</div> <div class="popular_posts"> <div class="news_box"> <a href="https://viws.ru/en/gde-skachat-virtual-tuner-dlya-nastroiki-gitary-programmy-dlya-nastroiki-gitary-na.html" class="thumb"><img width="95" height="95" src="/uploads/05387ce5a56f02b3be7813bf29315401.jpg" class="attachment-mini size-mini wp-post-image" alt="Programs for tuning a guitar on a computer" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/gde-skachat-virtual-tuner-dlya-nastroiki-gitary-programmy-dlya-nastroiki-gitary-na.html">Programs for tuning a guitar on a computer</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/skachat-prilozhenie-gugl-plei-na-noutbuk-besplatnaya-ustanovka-na.html" class="thumb"><img width="95" height="95" src="/uploads/a3375dc2becfbafe00dfc3ba26c20d32.jpg" class="attachment-mini size-mini wp-post-image" alt="Free installation of play store on laptop" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/skachat-prilozhenie-gugl-plei-na-noutbuk-besplatnaya-ustanovka-na.html">Free installation of play store on laptop</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/fail-lab-kak-preobrazovat-lab-fail-v-pdf-fail-alternativnyi.html" class="thumb"><img width="95" height="95" src="/uploads/6b2cb5291b483d3c01e7676aa2212a47.jpg" class="attachment-mini size-mini wp-post-image" alt="How to convert LAB file to PDF file" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/fail-lab-kak-preobrazovat-lab-fail-v-pdf-fail-alternativnyi.html">How to convert LAB file to PDF file</a> </div> </div> </div> </div> </div> <div class="widget"> <div class="heading">News</div> <div class="business_news"> <div class="news"> <div class="date">2024-05-22 01:37:38</div> <a href="https://viws.ru/en/chto-takoe-kesh-brauzer-kak-ego-pochistit-sposoby-ochistki-kesha-na-kompyutere-ili.html" class="title">Ways to clear the cache on a computer or laptop</a> </div> <div class="news"> <div class="date">2024-05-21 01:37:12</div> <a href="https://viws.ru/en/zaryadnoe-ustroistvo-port-usb-c-usb-type-c-universalnyi-razem-dlya-vsego-chto-takoe.html" class="title">USB Type-C: a universal connector for everything</a> </div> <div class="news"> <div class="date">2024-05-20 01:39:31</div> <a href="https://viws.ru/en/lav-ekspert-kto-horoshii-livekspert-otzyvy-o-zarabotke-na.html" class="title">Liveexpert - reviews about making money from consultations in LiveExpert</a> </div> <div class="news"> <div class="date">2024-05-20 01:39:31</div> <a href="https://viws.ru/en/proshivka-smartfona-sony-xperia-pri-pomoshchi-programmy-flashtool-proshivka-ili.html" class="title">Firmware or flashing Sony Xperia Directly flashing the device</a> </div> <div class="news"> <div class="date">2024-05-20 01:39:31</div> <a href="https://viws.ru/en/kitaiskie-bezramochnye-smartfony-goda-reiting-luchshie-bezramochnye-smartfony.html" class="title">The best frameless smartphones</a> </div> </div> </div> <div class="widget ai_widget" id="ai_widget-5"> <div class='dynamic dynamic-13' style='margin: 8px 0; clear: both;'> </div> </div> </div> </div> </div> </div> <div id="footer"> <div class="fixed"> <div class="inner"> <div class="footer_l"> <a href="https://viws.ru/en/" class="logo" style="background:none;">viws.ru</a> <div class="copyright"> <p>viws.ru - All about modern technology. Breakdowns, social networks, internet, viruses</p> <p><span>2024 - All rights reserved</span></p> </div> </div> <div class="footer_c"> <ul id="menu-topmenu-1" class="nav"> <li><a href="https://viws.ru/en/feedback.html">Contacts</a></li> <li><a href="">About the site</a></li> <li><a href="">Advertising on the website</a></li> </ul> <div class="footer_menu"> <ul id="menu-nizhnee-1" class=""> <li id="menu-item-"><a href="https://viws.ru/en/category/internet/">Internet</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/programs/">Programs</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/instructions/">Instructions</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/browsers/">Browsers</a></li> </ul> <ul id="menu-nizhnee-2" class=""> <li id="menu-item-"><a href="https://viws.ru/en/category/internet/">Internet</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/programs/">Programs</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/instructions/">Instructions</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/browsers/">Browsers</a></li> </ul> </div> </div> </div> </div> </div> </div> <script type="text/javascript">jQuery(function($) { $(document).on("click", ".pseudo-link", function(){ window.open($(this).data("uri")); } );} );</script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.9.2'></script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/table-of-contents-plus/front.min.js?ver=1509'></script> <script type='text/javascript' src='https://viws.ru/wp-content/themes/delo/assets/scripts/theme.js'></script> <script type='text/javascript'> var q2w3_sidebar_options = new Array(); q2w3_sidebar_options[0] = { "sidebar" : "sidebar", "margin_top" : 60, "margin_bottom" : 200, "stop_id" : "", "screen_max_width" : 0, "screen_max_height" : 0, "width_inherit" : false, "refresh_interval" : 1500, "window_load_hook" : false, "disable_mo_api" : false, "widgets" : ['text-8','ai_widget-5'] } ; </script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4'></script> <script async="async" type='text/javascript' src='https://viws.ru/wp-content/plugins/akismet/_inc/form.js?ver=4.0.1'></script> </body> </html>