Can you make a website with html for free?

// Tutorial Series //

How To Build a Website with HTML

Can you make a website with html for free?

Introduction

Introduction

If you are interested in learning how to build and design websites, Hyper Text Markup Language (HTML) is a great place to start. This project-based tutorial series will introduce you to HTML and its methods by building a personal website using our demonstration site (below) as a model. Once you learn the basics, you will know how change the website’s design and add personalized content. No prior coding experience is necessary to follow along the tutorials in this series.

Can you make a website with html for free?

HTML is the standard markup language used to display documents in a web browser. First developed by Tim Berners Lee in 1990 while working at the European Organization for Nuclear Research (CERN), HTML was one of the key innovative technologies used to publish the world’s first website on August 6, 1991. Thanks to a restoration project by CERN, you can now revisit the original website. Since that time, HTML has been significantly updated and expanded but its basic purpose to format and structure web pages remains the same.

Today, HTML is one of many tools used to build the web. Knowing how to write HTML will provide a strong foundation for your career as a web designer and prepare you to learn additional front-end web development skills like CSS and JavaScript.

In this tutorial series, you’ll learn how to create and customize a website using common HTML tags and techniques. After finishing this tutorial, you’ll have a site ready to deploy to the cloud.

Prerequisites

  • A code editor like Visual Studio Code or Atom. For this tutorial series, we will be using Visual Studio Code as our default code editor but you may use any code editor you like. Certain instructions may need to be slightly modified if you use a different editor.
  • A web browser like Firefox or Chrome. We will be using Firefox as our default browser but you may use any browser you like. Certain instructions may need to be slightly modified if you use a different web browser.
  • Two different profile photos, images, or avatars for personalizing your site (optional).

Once you have your prerequisites ready, you will be ready to set up your HTML project in the next tutorial.

Summary View

detailed View

// Tutorial //

To explore HTML in practice and begin building an HTML website, we’ll need to set up a new project using a text editor. This tutorial series uses Visual Studio Code, a free code editor available for Mac, Windows, or Linux, but you may use whichever code editor you prefer.

After opening your preferred text editor, open up a new project folder and name it html-practice. We’ll use this folder to store all the files and folders we create in the course of this tutorial series.

To create a new project folder in Visual Studio Code, navigate to the “File” menu item in the top menu and select “Add Folder to Workspace.” In the new window, click the “New Folder” button and create a new folder called html-practice as illustrated in the gif below:

Can you make a website with html for free?

Next, create a new file called index.html inside the html-practice folder. We’ll use this file through the tutorial series to experiment with HTML. If you are using Visual Studio Code, you can create a new file by using Right Click(on Windows) or CTRL + Left Click (on Mac) on the html-practice folder, selecting “New File”, and creating the file index.html as illustrated in the gif below:

Can you make a website with html for free?

You now have a project folder and file for exploring HTML. We’ll return to this file in the tutorials ahead.

Debugging and Troubleshooting CSS and HTML

Before we get started with our HTML exercises, be aware that precision is important when writing HTML. Even an extra space or mistyped character can keep your code from working as expected.

If your HTML code is not rendering in the browser as intended, make sure you have written the code exactly. To troubleshoot errors, check for extra or missing spaces, missing or misspelled tags, and missing or incorrect punctuation or characters. Each time you change your code, make sure to save your file before reloading it in the browser to check your results.

A Quick Note on Automatic HTML Support Features

Some code editors—such as the Visual Studio Code editor that we’re using in this series—provide automatic support for writing HTML code. For Visual Studio Code, that support includes smart suggestions and auto completions. While this support is often useful, be aware that you might generate extra code that will create errors if you’re not used to working with these support features. If you find these features distracting, you can turn them off in the code editor’s preferences.

We are now ready to begin learning how the CSS language works. In the next tutorial, we’ll begin exploring how CSS rules are used to control the style and layout of HTML content on a webpage.

// Tutorial //

This tutorial will introduce you to a basic HTML document and teach you how to view the source code of an HTML document in a browser.

HTML is used to mark up a document with instructions that tell a browser how to display and interpret the document’s content. For example, HTML can tell the browser which text content should be interpreted as a heading and which text content should be interpreted as paragraphs. HTML is also used to add images and assign links to text and images. These instructions are communicated through HTML tags, which are written like this: . Many, though not all tags, use an opening tag and closing tag to wrap around the content that they are used to modify.

To get a sense of how these tags are used, let’s inspect a snippet of HTML code. The HTML code below shows how HTML tags are used to structure text and add links and images. Don’t worry if you don’t understand the tags immediately- we’ll study those in the next tutorial.

<h2>Sammy's Sample HTMLh2>

<p>This code is an example of how HTML is written.p>

<p>It uses HTML tags to structure the text.p>

<p>It uses HTML to add a <a href="digitalocean.com/community">linka>.p>

<p>And it also uses HTML to add an image:p>

<img src="https://html.sammy-codes.com/images/small-profile.jpeg"/>

This HTML code is rendered in the browser as follows:

Can you make a website with html for free?

You should now have an understanding of how the HTML example code is rendered in a browser. Next, we will learn how to view the source code of any webpage using a browser tool.

Viewing the Source Code of a Webpage

Nearly every webpage you come across uses HTML to structure and display HTML pages. You can inspect the source code of any webpage by using a web browser like Firefox or Chrome. On Firefox, navigate to the “Tools” menu item in the top menu and click on “Web Developer/Page Source” like so:

Can you make a website with html for free?

On Firefox, you can also use the keyboard shortcut Command-U to view the source code of a webpage.

On Chrome, the process is very similar. Navigate to the top menu item “View” and click on “Developer/View Source.” You can also use the keyboard shortcut Option-Command-U.

Try inspecting the source code of the demo website that we will build in this tutorial series. You should receive a page with many more HTML tags than our example above. Don’t be alarmed if it seems overwhelming. By the end of this tutorial series, you should have a better understanding of how to interpret HTML source code and how to use HTML to build and customize your own websites.

Note: As mentioned above, you can inspect the source code of any webpage using tools from the Firefox or Chrome web browser. Try inspecting the code of a few of your favorite websites to get a sense of the underlying code that structures web documents. Though the source code of these sites will likely contain more languages than HTML, learning HTML first will help prepare you to learn additional languages and frameworks for creating websites later on if you wish.

You should now have a general understanding of the format of an HTML document and know how to inspect HTML source code using a browser tool. To better understand how HTML works, let’s inspect its key components. In the next tutorial, we will learn more about HTML elements, the building blocks that are used to create HTML documents.

// Tutorial //

HTML documents are composed of HTML elements. Most HTML elements contain content (such as text or an image) along with HTML tags that tell the browser how to interpret the content (such as a heading or paragraph text). HTML elements can be used to add structure, semantics, and formatting to different parts of an HTML document. An HTML element is often created—but not always—by opening and closing HTML tags, which wrap around a piece of content.

Below is an illustration that labels each of the parts of an HTML element:

Can you make a website with html for free?

Let’s try exploring HTML in practice. Try pasting the following line into your “index.html” file that you created when Setting Up Your HTML Project:

<strong>My strong textstrong>

In this example, the tag adds strong formatting by enclosing the text with a pair of opening and closing tags. Note that closing tags are always denoted by a forward slash (/).

Note: You may note that the tag acts very similar to adding bold styling to the text. You can achieve the same styling effect by using the bold tag, however the tag adds bold styling and semantic meaning that indicates the text is of strong importance. If you are using the bold styling because you want to note the importance of the text, make sure to use the tag, which will enable screen readers to announce their importance to the user.

Similarly, the emphasis tag adds italic styling and semantic meaning that indicates the text is emphasized. The italics tag only adds the italic styling to the text. If you are using the italic styling because you want to emphasize the text, make sure to use the tag, which will enable screen readers to announce their emphasis to the user.<$>

To check the results of this HTML code, we can load the “index.html” file in our browser. Though your file is not online, the browser will still be able to interpret the HTML file as if it were a web page document. Make sure to save your “index.html” file before loading it in the browser as only saved updates will be rendered.

How To View an Offline HTML File In Your Browser

You can view an offline HTML file in the browser in several ways:

  • Drag and drop the file into your browser
  • CTRL + Left Click (on Macs) or Right Click (on Windows) to open the file with a browser
  • Copy the full path of your file and paste the file in your browser bar

If you are using the Visual Studio Code text editor, you can copy the file path using CTRL + Left Click (on Macs) or Right Click (on Windows) on the file “index.html” in the left hand panel and selecting “Copy Path.” Then paste the path in your web browser as illustrated in the gif below:

Can you make a website with html for free?

<$>[note] Note: To load the file in the browser, it’s important that you copy the absolute path, (which refers to the file location relative to the root directory), rather than the relative path, (which refers to the file relative to the current working directory). In Visual Studio Code, “Copy Path” refers to the full file path. Be aware, however, that we will use relative paths of files in other parts of this tutorial.

After loading the file in your browser, you should receive a page that contains the following:

My strong text

Let’s try experimenting with other HTML elements. On the next line of your “practice.html” file, try adding the element, which adds emphasis.

<strong>My strong textstrong>
<em>My emphasized textem>

Save the file and reload the file in the browser. You should receive something like this:

My strong text My emphasized text

The first phrase should be styled with strong formatting and the second phrase should be styled with emphasis. However, you may be surprised by the side-by-side placement of the two phrases. If you added My emphasized text to the second line of the text editor, you may have expected “My emphasized text” to show up on the line below “My strong text” in the web browser. However, certain HTML elements, such as and , require you to specify line breaks with additional HTML elements (if you desire lines breaks). We’ll explain why in the next tutorial.

// Tutorial //

This tutorial will teach you the difference between inline-level and block-level elements in HTML and how they affect a piece of content’s position on the page.

When arranging elements in an HTML document, it’s important to understand how these elements take up space on a webpage. Certain elements can take up much more space on the webpage than the content they contain. Understanding the behavior of different element types will help you anticipate how they affect the position of other elements on the page.

In general, there are two different types of elements—inline-level elements and block-level elements—whose spacing defaults behave differently from one another. Below, we’ll describe how the default settings of these elements determine their position on the webpage and relative to the position of nearby elements.

Inline-level Elements

Inline elements are elements whose horizontal width is determined by the width of the content they contain. The element and the element we covered in the last tutorial are both examples of inline elements.

We can use Firefox’s Web Developer Inspector to inspect the size of HTML elements on a webpage. (If you are using Chrome, you can use the Developer Inspect Elements tool instead but this tutorial will give instructions for Firefox’s Web Developer tool.)

Return to the index.html file that you loaded in your browser. If you need to reload it and don’t remember how, refer to the instructions Loading an HTML File in your Browser from the last tutorial.

Then navigate to the Tools menu item in the top menu bar and select “Web Developer/Inspector.” Selecting this menu item will open up the Inspector interface that allows you to inspect the HTML and CSS of a webpage. Next, hover your cursor over the text My strong text, which should highlight the text in light blue. This highlighting shows the full extent of the space occupied by the element that your cursor is hovering over. As you may have expected, the element’s occupied space is just large enough to contain its text content:

Can you make a website with html for free?

Unlike block-level elements, which we’ll cover in the next section, inline elements do not take up their own line of horizontal space. Thus, inline elements will rest side by side on a webpage if you do not specify a break with an additional HTML element, such as the line break
element. This sizing default is often convenient, as you may want to mark up single words in a paragraph with an inline element such as or without pushing subsequent text to the next line.

Try adding the
tag in between your two lines of code in the index.html file. (You will need to return to your file in the text editor.) Note that the
element only requires an opening tag and does not wrap around any text:

<strong>My strong textstrong>
<br>
<em>My emphasized textem>

Save and reload the document in your browser to check your results. You should receive something like this:

My strong text My emphasized text

Your two phrases should now be on separate lines as they are now separated by the line break element
.

If you use the Firefox Web Developer Inspector to check the size of the elements, you can confirm that the width of each of the text elements is still determined by the width of the text content:

![Inspect Element again] (https://assets.digitalocean.com/articles/how-to-build-a-website-with-html/inspect-element2-min.gif)

Block-level Elements

Block-level elements behave differently than inline-level elements in that they take up an entire line of horizontal space on a webpage. This means that they automatically start on a new line and that they automatically push subsequent elements onto a new line as well.

For example, the HTML heading elements (

through
) are block-level elements that automatically place their content onto a new line and push any content that follows onto a new line. Each of these six heading elements represent a different heading size.

Let’s study how this works in practice. At the bottom of your index.html file, try pasting in the highlighted code snippet:

<strong>My strong textstrong>
<br>
<em>My emphasized textem>

<h2>Heading 1h2>
<h2>Heading 2h2>
<h3>Heading 3h3>
<h4>Heading 4h4>
<h5>Heading 5h5>
<h6>Heading 6h6>

Save your file and reload it in the browser. You should receive something like this:

Can you make a website with html for free?

Let’s now inspect the block-level heading elements to study how they differ from the inline-level text elements above. Open up the Firefox Web Developer Inspector and hover over each of the elements to inspect their occupied space as indicated by the blue highlighting. You should be able to confirm that the occupied horizontal space of each of the inline-level elements is determined by its text content, while the occupied horizontal space of each of the block-level elements stretches across the entire web page:

Can you make a website with html for free?

Block-level elements will always push inline-level elements down to the next line, even if you write those HTML elements on the same line of the HTML document. To confirm this for yourself, try writing a block-level element and an inline-level element on the same line of your index.html file. Erase the existing content from your file and add the following code snippet:

<strong>My strong textstrong><h2>My headingh2><em>My emphasized texta>

Can you guess how this HTML code will render in the browser? Save your file and reload it in the browser. You should receive something like this:

Can you make a website with html for free?

Notice that the heading element

has started on a new line and pushed the subsequent text element to a new line even though the elements were written on the same line in the HTML document.

You should now have an understanding of how inline-level and block-level elements are positioned and how they affect the position of nearby elements. Remembering their distinct behaviors can be useful when arranging HTML elements in the future.

We’ll continue learning about new inline and block elements in the tutorials ahead.

// Tutorial //

This tutorial will teach you how to nest HTML elements in order to apply multiple HTML tags to a single piece of content.

HTML elements can be nested, meaning that one element can be placed inside another element. Nesting allows you to apply multiple HTML tags to a single piece of content. For example, try pasting the following code snippet inside your index.html file:

<strong>My bold text and <em>my bold and emphasized textem>strong>

Save your file and reload it in the browser. (For instructions on creating an index.html file, please see our tutorial here or for loading the file in your browser, see our tutorial here.) You should receive something like this:

My bold text and my bold and emphasized text

Nesting Best Practices

Note that it is recommended to always close nested tags in the reverse order that they were opened.
For example, in the example below, the tag closes first as it was the last tag to open. The tag closes last as it was the first to open.

This sentence contains HTML elements that are <strong><em>nested according to best practicesem>strong>.

As a counter example, the following HTML code contains tags that are not nested according to best practices, as the tag closes before the tag:

This sentence contains HTML elements that are <strong><em>not nested according to best practicesstrong>em>.

While not technically necessary for rendering your HTML in the browser, nesting your tags in the proper order can help improve the readability of your HTML code for you or other developers.

// Tutorial //

HTML attributes can be used to change the color, size, and other features of HTML elements. For example, you can use an attribute to change the color or size of a font for a text element or the width and height for an image element. In this tutorial, we’ll learn how to use HTML attributes to set values for the size and color properties of HTML text elements.

An HTML attribute is placed in the opening tag like this:

<element attribute="property:value;">

One common attribute is style, which allows you to add style properties to an HTML element. While it’s more common to use a separate stylesheet to determine the style of an HTML document, we will use the style attribute in our HTML document for this tutorial.

Using the Style Attribute

We can change multiple properties of an

element with the style attribute. Clear your “index.html” file and paste the code below into your browser. (If you have not been following the tutorial series, you can review instructions for setting up an index.html file in our tutorial Setting Up Your HTML Project.

<h2 style="font-size:40px;color:green;">This text is 40 pixels and green.h2>

Before we load the file in our browser, let’s review each of the parts of this HTML element:

  • h2 is the name of the tag. It refers to the largest-sized Heading element.
  • style is the attribute. This attribute can take a variety of different properties.
  • font-size is the first property we’re setting for the style attribute.
  • 40px; is the value for the property font-size, which sets the text content of the element to 40 pixels.
  • color is the second property we’re setting for the style attribute.
  • green is the value for the property color, which sets the text content color to green

Note that the properties and values are contained by quotation marks, and that each property:value pair ends with a semicolon ;.

Save the file and reload it in your browser. (For instructions on loading the file in your browser, see our tutorial here.) You should receive something like this:

This text is 40 pixels and green.

You have now learned how to use the style attribute to change the font size and font color of a text element. Note that certain elements require attributes, such as the element which allows you to add a link to a text or image, and the into the file. (If you have not been following the tutorial series, you can review instructions for setting up an index.html file in our tutorial Setting Up Your HTML Project.

Then, copy the file path of the image and replace Image_Location with the location of your saved image. If you are using the Visual Studio Code text editor, you can copy the file path by using CTRL + Left Click (on Macs) or Right Click (on Windows) on the image file small-profile.jpeg in the left-hand panel and selecting “Copy Path.” For an illustration of the process, please see the gif below:

Can you make a website with html for free?

Note: Make sure to copy the relative or project file path of the image rather than the absolute or full file path of the image. The relative path refers to the file location relative to the current working directory (as opposed to the absolute path, which refers to the file location relative to the root directory.) While both paths will work in this instance, only the relative path would work if we decided to publish our website online. Since our end goal is to create a publishable website, we will start using relative paths now when adding

Can you make a website with html for free?

Technically, you can also use links to images hosted online as file paths. To understand how this works, try replacing the image location with a link to our image of Sammy the Shark like this:

<img src="https://html.sammy-codes.com/images/small-profile.jpeg">

Save your file and reload it in the browser. The image should still load in your web document, but this time the image is being sourced from its online location rather than your local project directory. You can experiment with adding other online images by using their location links as the src attribute in the

Can you make a website with html for free?
.

  • For a useful guide on determining whether an image is informative or decorative, visit https://www.w3.org/WAI/tutorials/images/decision-tree/

  • You should now have familiarity with how to add images to your HTML document and how to add alternative text to aid with accessibility. We’ll learn how to change the image size and style in the tutorial How To Add a Profile Image To Your Webpage later on in the series. In the next tutorial, we’ll learn how to add links to an HTML document.

    // Tutorial //

    This tutorial will walk you through the steps of adding hyperlinks to your webpage.

    Hyperlinks can be added to text or images with the anchor link element . The tag requires the attribute href, which is used to specify the destination link. The element is used like this:

    <a href="www.DestinationLink.com">The text you want to linka>
    

    Try adding the code snippet below to your “index.html” file and changing the sample highlighted text with a real link, such as https://digitalocean.com/community:

    <a href="https://www.digitalocean.com/community">The text you want to linka>
    

    (If you have not been following the tutorial series, you can review instructions for setting up an index.html file in our tutorial Setting Up Your HTML Project. Save the file and load it in your browser.

    You should receive an output like this:

    Can you make a website with html for free?

    You can also link images by wrapping an image element with an element like so:

    <a href="https://www.digitalocean.com/community">The text you want to link
    <img src="https://html.sammy-codes.com/images/small-profile.jpeg">
    a>
    

    Try testing the code snippet in your browser to check that it works. You should now understand how to add hyperlinks to text and images on your webpage.

    // Tutorial //

    How To Use a
    , the HTML Content Division Element

    Published on July 28, 2020 · Updated on August 9, 2021

    The HTML Content Division element (

    ) acts as a container to structure a webpage into separate components for individual styling. This tutorial will teach you how to create and style
    containers on your webpage.

    On its own, the

    element has little effect on the layout of the page and is usually given attributes to adjust its size, color, position, or other features. Typically, developers style
    elements with CSS, but this tutorial will give you an understanding of how
    elements work by styling them directly in an HTML document.

    The

    element is styled with the HTML style attribute. As demonstrated in the example below, a
    element can contain multiple style properties:

    <div style=”property: value; property: value;”>div>
    

    Notice that the

    element has opening and closing tags but does not require any content. To understand how the
    element works in practice, clear your index.html file and paste the code below inside. (If you have not been following the tutorial series, you can review instructions for setting up an index.html file in our tutorial Setting Up Your HTML Project.

    <div style="width:300px;height:200px; background-color:red;">
    div>
    

    Save the file and reload it in the browser. (For instructions on loading the file in your browser, see our tutorial here.) You should receive a red box with a width of 300 pixels and a height of 200 pixels like this:

    Can you make a website with html for free?

    You can also add content to a

    element by adding content in between the opening and closing
    tags. Try adding text in between your
    tags like so:

    <div style="width:300px;height:300px; background-color:red;">
      This is text inside a div. 
    div>
    

    Save the file and reload it in the browser. You should receive something like this:

    Can you make a website with html for free?

    You can also put

    containers inside
    containers. Try adding a yellow
    container inside the red
    container like so:

    <div style="width:300px;height:300px; background-color:red;">
      <div style="width:100px;height:100px; background-color:yellow;">
      div>  
    div>
    

    Save the file and reload it in the browser. You should receive something like this:

    Can you make a website with html for free?

    Note that

    elements are block-level elements and will start on their own line and push subsequent elements down to the next line. Try adding another
    element to your file to understand how it is pushed down to the next line (even though there appears to be enough space for it to fit next to the second
    element:

    <div style="width:300px;height:300px;background-color:red;">
      <div style="width:100px;height:100px; background-color:yellow;">
      div>
    div>
    <div style="width:100px;height:100px; background-color:blue;">
    div>
    

    Save the file and reload it in the browser. You should receive something like this:

    Can you make a website with html for free?

    You should now have a basic understanding of how

    elements work. We will return to
    elements when we begin building our website in the third section of this tutorial series.

    // Tutorial //

    You can use HTML to modify the color of some elements and pieces of content of a webpage. For example, you can change the color of text, a border, or—as demonstrated in the tutorial on HTML Content Division—of a

    element. The method for changing the color values of these pieces of content varies from element to element.

    In this tutorial, you will learn how to change the color of text, image borders, and

    elements using HTML color names.

    The color of text elements, such as

    or

    , is modified by using the style attribute and the color property like so:

    <p style="color:blue;">This is blue text.p>
    

    Try writing this code in your index.html file and loading it in the browser. (If you have not been following the tutorial series, you can review instructions for setting up an index.html file in our tutorial Setting Up Your HTML Project. For instructions on loading the file in your browser, see our tutorial here.)

    You should receive something like this:

    This is blue text.

    The color of a border is modified by using the style attribute and the border property:

    <img src="https://html.sammy-codes.com/images/small-profile.jpeg" style="border: 10px solid green"/>
    

    Try writing this code in your index.html file and loading it in the browser. (Note that we are using an image that we are hosting online in this example. We have also specified that the border should be 10 pixels wide and solid (as opposed to dashed)).

    You should receive something like this:

    Can you make a website with html for free?

    The color of a

    container is modified by using the style attribute and the background-color property like so:

    <div style="width:200px;height:200px;background-color:yellow;">div>
    

    Try writing this code in your index.html file and loading it in the browser. You should receive something like this:

    In these examples, the color value is defined by color names. Try changing the color of text, image borders and

    elements using the following color names: black, white, gray, silver, purple, red, fuchsia, lime, olive, green, yellow, teal, navy, blue, maroon, and aqua.

    Note that colors can also be specified by hexadecimal values. A hexadecimal color consists of six alphanumeric digits preceded by a pound symbol, such as #0000FF (blue), #40E0D0 (turquoise), or #C0C0C0 (silver). For this tutorial series, however, we will continue using color names.

    You should now have a basic familiarity with how to change the color of text, image borders, and

    elements using color names. We will return to colors later on the tutorial series when we begin building our website.

    // Tutorial //

    The first thing to do when creating a new website project is to create a project directory (or folder) to store all the files that will be created in the process. This tutorial will walk you through the steps of setting up folders and files necessary for building your website with HTML.

    For this website project, we can continue using the html-practice project directory and index.html file we created earlier in the tutorial series. (If you have not been following along this tutorial series and need instructions for setting up a project directory and index.html file, please see our earlier tutorial in this series Setting Up Your HTML Project.

    Note: If you decide to choose your own name for the directory, make sure to avoid character spaces, special characters (such as !, #, %, or others), and capital letters, as these can cause problems later on.

    Next, we’ll format the index.html file to serve as the website’s homepage. The first step in formatting a web document is to add the declaration to the first line. Make sure your index.html file is clear and then add to the first line of the document.

    This declaration tells the browser which type of HTML is being used and is important to declare as there are multiple versions of HTML. In this declaration, html specifies the current web standard of HTML, which is HTML5.

    Next, we’ll add the element by adding opening and closing tags. The element tells the browser that all content it contains is intended to be read as HTML. Inside this tag, we will also add the lang attribute, which specifies the language of the webpage. In this example, we will specify that our site is in English using the en language tag. For a full list of language tags, visit the IANA Language Subtag Registry.

    Your document should now look like this:

    DOCTYPE html>
    <html lang="en">
    html> 
    

    From this point forward, all content that we add to our website will be added between the opening and closing tags.

    We will begin adding content to our site in the next tutorial.

    // Tutorial //

    How To Add an HTML Element To Your Webpage

    Published on July 28, 2020 · Updated on August 9, 2021

    This tutorial will walk you through the steps of adding a element to your webpage, which creates a section for us to include machine-readable information about our web document. This information is primarily used by browsers and search engines to interpret the content of the page. Content placed inside the element will not be visible on the web page.

    Note:The HTML element is a semantic element in that it tells the browser and the developer the meaning or purpose of its content. Semantic elements are used to aid human readability of an HTML document, provide the browser further information for interpreting the content, improve site accessibility (screen readers use semantic tags), and can assist with SEO positioning.

    Add the opening and closing tags inside of the tags. Next, add two additional lines of HTML code inside the tags like this:

    DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>Sammy’s First Websitetitle>
      head>
    html> 
    

    Note that you have nested a variety of HTML elements inside one another. The </code> and <code><meta></code> elements are nested inside the <head> element, and the <code><head></code> element is nested inside the <code><html></code> element. We will nest elements frequently as the tutorial proceeds.</p><p>Let’s now pause briefly to understand the purpose of the code we’ve just added. The line of code after the opening <code><head></code> tag—<code><meta charset="utf-8"></code>—specifies the document’s character set to UTF-8, a unicode format that supports a majority of characters from a wide variety of written languages.</p><p>The next line of code sets the HTML document’s title using the <code><title></code> element. The content you insert into this element will be displayed on the browser tab and as the website’s title in search results, but it will not show up on the web page itself. Make sure to replace “Sammy’s First Website” with your name or the name of the website you’re building.</p><p>Though developers often add additional information in the <code><head></code> section, we now have sufficient information for creating a basic HTML webpage. Save your file before moving onto the next section. If you try loading the file in your browser, you should receive a blank page.</p><p>You should now know the purpose of HTML <head> elements and how to add one to an HTML file.</p>// Tutorial //<p><p>In this tutorial, we will walk through the steps involved in adding a favicon to your webpage using HTML. You can use any image you like for your favicon, but keep in mind that simple, high-contrast images often work best given the favicon’s small size. You can also generate a custom favicon through sites like favicon.cc.</p> <p>A favicon is a small image that is located in the browser tab to the left of a webpage’s title. The image below illustrates the location of a favicon.</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvZmF2aW9uLnBuZw==.webp" ></img></div></p><p>To add a favicon to your site, create a folder in your project directory called <code>images</code> (if you don’t already have one) and save your desired favicon image in this folder. If you don’t have an image, you download this Sammy the Shark image that we have hosted on our demonstration website. (For a refresher on how to add images to webpages using HTML, please visit our tutorial HTML Images from earlier in this tutorial series.</p><p>Next, add the <code><link></code> element (highlighted below) to your <code>index.html</code> file right below the <code><title></code> element. Your code should now be like this:</p><pre><code>... <span><span><span><</span>title</span><span>></span></span> Sammy’s First Website <span><span><span></</span>title</span><span>></span></span> <span><span><span><</span>link</span> <span>rel</span><span><span>=</span><span>"</span>shortcut icon<span>"</span></span> <span>type</span><span><span>=</span><span>"</span>image/jpg<span>"</span></span> <span>href</span><span><span>=</span><span>"</span>Favicon_Image_Location<span>"</span></span><span>/></span></span> ... </code></pre><p>Make sure to replace <code>Favicon_Image_Location</code> with the relative file path of your favicon image. Save the <code>index.html</code> file and reload it in your web browser. Your browser tab should now contain a favicon image.</p><p>You should now know how to add favicon images to websites using HTML.</p>// Tutorial //<p><h4>How To Style the HTML <body> Element</h4><p>Published on July 28, 2020 · Updated on August 9, 2021</p><p><p>The HTML <code><body></code> element is a semantic element that tells the browser that its content is part of the body of the webpage and intended for display. In this tutorial, we will add a <code><body></code> element to our web document where we can add content later on.</p><p>To add a <code><body></code> element to your document, insert opening and closing <code><body></code> tags after the closing <code></head></code> tag but before the closing <code></html></code> tag. Your document should now have the following code:</p><pre><code><span><span><!</span><span>DOCTYPE</span> <span>html</span><span>></span></span> <span><span><span><</span>html</span> <span>lang</span><span><span>=</span><span>"</span>en<span>"</span></span><span>></span></span> <span><span><span><</span>head</span><span>></span></span> <span><span><span><</span>meta</span> <span>charset</span><span><span>=</span><span>"</span>utf-8<span>"</span></span><span>></span></span> <span><span><span><</span>title</span><span>></span></span>Sammy’s First Website<span><span><span></</span>title</span><span>></span></span> <span><span><span><</span>link</span> <span>rel</span><span><span>=</span><span>"</span>shortcut icon<span>"</span></span> <span>type</span><span><span>=</span><span>"</span>image/jpg<span>"</span></span> <span>href</span><span><span>=</span>”Favicon_Image_Location”/</span><span>></span></span> <span><span><span></</span>head</span><span>></span></span> <span><span><span><</span>body</span><span>></span></span> <span><span><span></</span>body</span><span>></span></span> <span><span><span></</span>html</span><span>></span></span> </code></pre><p>You should now understand the purpose of an HTML <body> element and understand how to add one to your HTML file.</p><p>In the next step, we’ll begin to add our website content in between the <code><body></code> tags.</p>// Tutorial //<p><p>We will now begin adding content by replicating the top section of the demonstration website.</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvc2VjdGlvbi0xLnBuZw==.webp" ></img></div></p><p>This top section is composed of a large background image, a small profile image, a text header, a text subheader, and a link. Each of these pieces of content are styled and positioned with HTML.</p><p>In the remaining tutorials of this series, we’ll learn how to use HTML to recreate this content on a new webpage.</p>// Tutorial //<p><p>In this tutorial we’ll learn how to use a <code><div></code> container to structure the top section of the webpage. We will use the <code>style</code> attribute to specify the height of our <code><div></code> container, apply a background image, and specify that the background image should cover the entire area of the <code><div></code> container.</p><p>Before we get started, we’ll need a background image. You may download and use our demonstration site’s background image for the purpose of the tutorial, or you can choose a new image. (For a refresher on how to add images to webpages using HTML, please visit our tutorial HTML Images from earlier in this tutorial series).</p><p>Once you’ve chosen your background image, save the image in your <code>images</code> folder as <code>background-image.jpg</code>.</p><p>Next, paste the highlighted code snippet into your <code>index.html</code> file below the opening <code><body></code> tag and above the closing <code></body></code> tag:</p><pre><code>. . . <span><span><span><</span>body</span><span>></span></span> <span><!--First section--></span> <span><span><span><</span>div</span> <span><span>style</span></span><span><span><span>=</span><span>"</span></span></span><span><span><span><span>background-image</span><span>:</span> <span><span>url</span><span>(</span><span>'Image_Location'</span><span>)</span></span></span></span><span><span><span>;</span> </span><span><span>background-size</span><span>:</span> cover<span>;</span> <span>height</span><span>:</span>480px<span>;</span> <span>padding-top</span><span>:</span>80px<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span></</span>div</span><span>></span></span> <span><span><span></</span>body</span><span>></span></span> ... </code></pre><p>Make sure to switch the text that says <code>Image_Location</code> with the file path of your image and don’t forget to add the closing <code></div></code> tag.</p><p>Note that we have added the comment <code><!--First section--></code> to help organize our HTML code. A comment is a piece of code that is ignored by the browser. Comments are used to help explain or organize code to developers. They are created with the opening tag <code><!--</code> and the closing tag <code>--></code>.</p><p>We have also specified the <code>height</code> to 480 pixels and <code>padding-top</code> to 80 pixels, which will create 80 pixels of space between the top of the <code><div></code> element and any content we place inside. Note that you will not be able to see the effects of the <code>padding-top</code> value until we place content inside in the next step.</p><p>Save the file and reload it in the browser. You should receive something like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvYmFja2dyb3VuZC1pbWFnZS5wbmc=.webp" ></img></div></p><p>Alternately, you can use a background color instead of a background image. To use a background color, replace the <code><div></code> element code snippet you just created with the following highlighted <code><div></code> element code snippet like this:</p><pre><code>. . . <span><span><span><</span>body</span><span>></span></span> <span><!--First section--></span> <span><span><span><</span>div</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>background-color</span><span>:</span> #f4bc01<span>;</span> <span>height</span><span>:</span>480px<span>;</span> <span>padding-top</span><span>:</span>80px<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span></</span>div</span><span>></span></span> <span><span><span></</span>body</span><span>></span></span> ... </code></pre><p>Save the file and reload it in the browser to check your results. The background image should now be replaced with a container that is the same size but has a solid yellow color.</p><p>If you compare the <code><div></code> container on your site with the same <code><div></code> container on the demonstration site, you may notice that your webpage’s <code><div></code> container is surrounded by a small margin of white space. This margin is due to the fact that all HTML pages are automatically set to have a small margin by default.</p><p>To remove this margin, we need to add a style attribute to the opening <code><body></code> tag that sets the margin of the <code><body></code> element of the HTML page to 0 pixels. Locate the opening <code><body></code> in your <code>index.html</code> file and modify it with the highlighted code:</p><p><body style=“margin:0;”></p><p>Save and reload the file in your browser. There should now be no white margin surrounding the top <code><div></code> container.</p><p>You should now know how to add a <code><div></code> container with a background image to structure the top section of a webpage.</p>// Tutorial //<p><p>In this tutorial, we’ll walk through the steps of adding and styling the top profile image as displayed in the demonstration website.</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvc2VjdGlvbi0xLnBuZw==.webp" ></img></div></p><p>Before we get started, you may want to pick a personal profile photo for including on your site. If you don’t have a profile photo, you can use any image for demonstration purposes or create an avatar through a site like Getavataaars.com. Otherwise, you can use the image from our demonstration site by downloading the image here. (For a refresher on how to add images to webpages using HTML, please visit our tutorial How To Add Images To Your Webpage Using HTML from earlier in this tutorial series.)</p><p>Once you’ve selected an image, save it as <code>small-profile.jpg</code> in your <code>image</code> folder.</p><p>Paste the following highlighted <code><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9hcnRpY2xlcy9ob3ctdG8tYnVpbGQtYS13ZWJzaXRlLXdpdGgtaHRtbC9zbWFsbC1wcm9maWxlLXVuc3R5bGVkLTEucG5n.webp" ></img></div></p><p>Your profile image should appear as 150 pixels tall given the height we specified with the <code>style</code> attribute. It should also be located 80 pixels below the top of the <code><div></code> container, given the <code>top-padding</code> property we specified for the <code><div></code> container in the previous tutorial. Next, let’s add properties to our <code>style</code> attribute that will give our image a circular shape and a yellow border. We will also add alternative text to improve accessibility for site visitors who use screen readers.</p><p>Add the highlighted properties to your <code> </code></pre><p>Make sure you still have the correct file path of your image listed as the <code>src</code> address. Save the file and reload it in the browser. You should receive something like this:</p> <p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvc3R5bGVkLXByb2ZpbGUtaW1hZ2UucG5n.webp" ></img></div></p><p>Before moving on, let’s briefly pause to study the code modifications we just made. Setting the <code>border-radius</code> value to 50% gives the image a circular shape. Setting the border value to <code>10px solid #FEDE00</code> gives the image a solid border that is 10 pixels wide and has the hexadecimal color value <code>#FEDE00.</code></p><p>You should now know how to add and style a profile image to your website with HTML. We are now ready to add a title and subtitle to the webpage in the next tutorial.</p>// Tutorial //<p><h4>How To Add and Style a Title To Your Webpage With HTML</h4><p>Published on July 29, 2020 · Updated on August 9, 2021</p><p><p>In this tutorial, we will add and style a title and subtitle to our homepage. For the demonstration site, we’re using Sammy’s name and Sammy’s professional title, but you can add any content here that you like. For this content, we’ll use the <code><h2></code> heading element, the <code><p></code> paragraph element, and the <code><em></code> emphasis element.</p><p>Paste the following highlighted code snippet after your profile <code><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvdGl0bGUtc3VidGl0bGUucG5n.webp" ></img></div></p><p>The elements used in this code snippet apply some light styling to our title and subtitle. However, we’ll need to add additional style values if we want the style of our title and subtitle to match the style of the demonstration site.</p><p>To make these modifications, we’ll add the <code>style</code> attribute to these elements to set additional properties. Add the highlighted attributes to your <code><h2></code> and <code><p></code> elements as demonstrated in the following code snippet:</p><pre><code><span><span><span><</span>h2</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span>100px<span>;</span> <span>color</span><span>:</span>white<span>;</span> <span>margin</span><span>:</span>10px<span>;</span></span></span><span><span>"</span></span></span><span>></span></span>Sammy the Shark<span><span><span></</span>h2</span><span>></span></span> <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span>30px<span>;</span> <span>color</span><span>:</span> white<span>;</span></span></span><span><span>"</span></span></span><span>></span></span><span><span><span><</span>em</span><span>></span></span>Senior Selachimorpha at DigitalOcean<span><span><span></</span>em</span><span>></span></span><span><span><span></</span>p</span><span>></span></span> </code></pre><p>Save your file and reload it in the browser. You should receive something like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvc3R5bGVkLXRpdGxlLnBuZw==.webp" ></img></div></p><p>These style properties adjust the font size to 30 pixels and change the font color to white. We have also added a margin of 10 pixels to the <code><h2></code> element.</p><p>You should now know how to add and style a title and subtitle to your webpage with HTML. In the next tutorial, we’ll learn how to create and link to an additional webpage on your website.</p>// Tutorial //<p><h4>How To Create Additional Webpages on Your HTML Website</h4><p>Published on July 29, 2020 · Updated on August 9, 2021</p><p><p>When building a website, you may want to have more than one webpage. If you want to add and link to additional pages, you’ll need to first create a new <code>html</code> file in your website project directory. In this tutorial, we’ll learn how to create and link to an additional webpage on your website</p><p>Our demonstration website includes an “About” webpage. In this tutorial, we’ll walk you through the process of creating and linking to an “About” webpage, but you may change the title and the content of this page to fit your needs.</p><p>To add a new page to your website, create a new file named <code>about.html</code> and save it in your project directory <code>html-practice</code>. (If you have not been following the tutorial series, you can review instructions for setting up a new <code>html</code> file in our tutorial Setting Up Your HTML Project.)</p></p><p><strong>Note</strong>: If you decide to choose your own name for the file, make sure to avoid character spaces, special characters (such as !, #, %, or others), and capital letters as these can cause problems later on. You must also include the <code>.html</code> extension.</p><p>Next, you’ll need to format the file by adding information that will help the browser interpret the file content. To format the file, add following code snippet at the top of the document:</p><pre><code><span><span><!</span><span>DOCTYPE</span> <span>html</span><span>></span></span> <span><span><span><</span>html</span> <span>lang</span><span><span>=</span><span>"</span>en<span>"</span></span><span>></span></span> <span><span><span><</span>head</span><span>></span></span> <span><span><span><</span>meta</span> <span>charset</span><span><span>=</span><span>"</span>utf-8<span>"</span></span><span>></span></span> <span><span><span><</span>title</span><span>></span></span>About<span><span><span></</span>title</span><span>></span></span> <span><span><span></</span>head</span><span>></span></span> <span><span><span></</span>html</span><span>></span></span> </code></pre><p>Make sure to change the highlighted text with a title you want for you page. For an explanation of each of the HTML tags, please visit the earlier tutorial in this series Adding an HTML <head> Element To Your Webpage. Save the file before you continue.</p><p>Before adding any content to this page, let’s walk through the steps of adding a link to this page on your homepage.</p><p>First, return to your <code>index.html</code> file and add the following snippet below the subtitle of your site and above the closing <code></div></code> tag:</p><pre><code>... <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span> 20px<span>;</span> <span>color</span><span>:</span>#1F9AFE<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span><</span>a</span> <span>href</span><span><span>=</span><span>"</span>Webpage_FilePath<span>"</span></span><span>></span></span>About this site<span><span><span></</span>a</span><span>></span></span> <span><span><span></</span>p</span><span>></span></span> ... </code></pre><p>Change the highlighted file path to the relative file path of your “about.html” file. The relative path refers to the file location relative to the current working directory (as opposed to the absolute path, which refers to the file location relative to the root directory.) If you are using the Visual Studio Code text editor, you can copy the relative file path by <code>CTRL + Left Click</code> (on Macs) or <code>right-clicking' (on Windows) on the file icon and selecting </code>Copy Relative Path.`</p><p>Note that we have also specified a font-size and color using the <code>style</code> attribute. Save your <code>index.html</code> file and reload it in the browser.</p><p>You should now have a link that directs to your <code>about.html</code> web page like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvYWRkZWQtbGluay5wbmc=.webp" ></img></div></p><p>If you receive an error, make sure that your file is in the same project directory as your <code>index.html</code> file and that there are no errors in your project path.</p><p>You should now know how to create and link to a new webpage on your website. You can use these same steps to create and link to additional webpages on your website. You can also add content to any new webpage in the same way you are learning to add content to your homepage.</p>// Tutorial //<p><p>Aligning content to the center, left, or right can be useful for arranging content on your page. In this tutorial, we’ll learn how to align text using HTML.</p><p>To align text on a webage, we can use the <code>style</code> attribute and the property <code>text-align.</code></p><p>For example, the following code snippet would center the text “Sample text”:</p><pre><code><span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>text-align</span><span>:</span>center<span>;</span></span><span>"</span></span></span><span>></span></span>Sample text<span><span><span></</span>p</span><span>></span></span> </code></pre><p>To align your HTML content to the left or right, you would replace <code>center</code> with <code>left</code> or <code>right</code>.</p><p>In this tutorial, we’ll go through the process of using the <code>text-align</code> property to center the images and text in the top section of our webpage as illustrated in our demonstration website.</p><p>To center this content, we’ll add the <code>text-align</code> property to the <code><div></code> element that contains the background image, profile image, title, subtitle, and link in the top section of the homepage.</p><p>Locate this <code><div></code> element in your <code>index.html</code> file and add the highlighted text like so:</p><pre><code>... <span><!--First section--></span> <span><span><span><</span>div</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>background-image</span><span>:</span> <span><span>url</span><span>(</span><span>'https://html.sammy-codes.com/images/background.jpg'</span><span>)</span></span><span>;</span> <span>background-size</span><span>:</span> cover<span>;</span> <span>height</span><span>:</span>480px<span>;</span> <span>padding-top</span><span>:</span> 80px<span>;</span> <span>text-align</span><span>:</span> center<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span><</span>img</span> <span>src</span><span><span>=</span><span>"</span>https://html.sammy-codes.com/images/small-profile.jpeg<span>"</span></span> <span><span>style</span><span><span>=</span><span>"</span><span><span>height</span><span>:</span>150px<span>;</span> <span>border-radius</span><span>:</span> 50%<span>;</span> <span>border</span><span>:</span> 10px solid #FEDE00<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span><</span>h2</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span>100px<span>;</span> <span>color</span><span>:</span>white<span>;</span> <span>margin</span><span>:</span>10px<span>;</span></span><span>"</span></span></span><span>></span></span>Sammy the Shark<span><span><span></</span>h2</span><span>></span></span> <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span>30px<span>;</span> <span>color</span><span>:</span> white<span>;</span></span><span>"</span></span></span><span>></span></span><span><span><span><</span>em</span><span>></span></span>Senior Selachimorpha at DigitalOcean<span><span><span></</span>em</span><span>></span></span><span><span><span></</span>p</span><span>></span></span> <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>font-size</span><span>:</span> 20px<span>;</span> <span>color</span><span>:</span>#1F9AFE<span>;</span></span><span>"</span></span></span><span>></span></span><span><span><span><</span>a</span> <span>href</span><span><span>=</span><span>"</span>Webpage FilePath<span>"</span></span><span>;</span><span>></span></span>About this site<span><span><span></</span>a</span><span>></span></span><span><span><span></</span>p</span><span>></span></span> <span><span><span></</span>div</span><span>></span></span> ... </code></pre><p>Only copy and add the highlighted <code>text-align</code> attribute as other parts of this HTML code will not be specific to your project. Save your file and reload it in the browser. You should receive something like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvY2VudGVyZWQtY29udGVudC5wbmc=.webp" ></img></div></p><p>You should now understand how to center and align text and have a section that looks like the top section of the demonstration site. In the next tutorial, we will recreate the middle section of the demonstration site.</p>// Tutorial //<p><h4>How To Create the Body of Your Homepage With HTML</h4><p>Published on July 29, 2020 · Updated on August 9, 2021</p><p><p>In this tutorial, we will recreate the body or middle section of our demonstration website using HTML <code><div></code> elements and HTML <code>style</code> properties.</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvbWlkZGxlLXNlY3Rpb24ucG5n.webp" ></img></div></p><p>The middle section of our demonstration website contains a large profile image and a short paragraph of text displayed side by side. We can achieve this layout by using <code><div></code> containers that we learned about in a previous tutorial in this series. Note that if you continue learning front-end skills such as CSS, there are improved methods for arranging content on a webpage that build upon the methods we’ll use in this tutorial.</p><h2 id="how-to-add-a-large-profile-image-to-your-webpage">How To Add a Large Profile Image to Your Webpage</h2><p>First, we’ll add a large profile image as displayed in the demonstration site. Before we start, make sure you have selected a large profile image or other image to use. We’ll be displaying our image at 400 by 600 pixels, so make sure your image size will work with those dimensions. If you do not have an image, you can download the image from our demo site. Once you have your image, save it in your images folder. (For a refresher on how to add images to webpages using HTML, please visit our tutorial HTML Images from earlier in this tutorial series).</p><p>Next, copy the following code snippet after the last closing <code></div></code> and before the closing <code><body></code> tag in your “index.html” file:</p><pre><code>... <span><!--Second section--></span> <span><span><span><</span>img</span> <span>src</span><span><span>=</span><span>"</span>images/large-profile.jpg<span>"</span></span> <span><span>style</span><span><span>=</span><span>"</span><span><span>height</span><span>:</span>600px<span>;</span> <span>margin</span><span>:</span>100px<span>;</span> <span>float</span><span>:</span> left<span>;</span></span><span>"</span></span></span> <span>alt</span><span><span>=</span><span>"</span>A pretend invisible person wearing a hat, glasses, and coat.<span>"</span></span><span>></span></span> ... </code></pre><p>Let’s pause briefly to review each part of this code snippet:</p><ul><li>The <code><!--Second section--> </code> is a comment that will not be read by the browser and is used to help organize our <code>html</code> file for the purpose of human readability</li><li>The <code><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aW1hZ2VzL2xhcmdlLXByb2ZpbGUuanBn.webp" ></img></div> tells the browser where to find the image that is being displayed.</li><li>The <code>style</code> attribute allows us to define the <code>height</code>, <code>margin</code>, and <code>float</code> properties. The <code>margin</code> property allows you to specify the size of blank space surrounding an HTML element. The <code>float</code> property allows you to “float” the image to the right and left side of the display while allowing text to flow around its side.</li><li>The <code>alt</code> attribute allows you to add alternative text to your image to improve site accessibility to visitors who use screen readers. Don’t forget to change the alternative text in this code snippet to a description that matches your image.</li></ul><p>Save your “index.html” file and reload it in the browser. The section below the top section of your webpage should now look like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvYWRkZWQtcHJvZmlsZS1pbWFnZS5wbmc=.webp" ></img></div></p><p>If you have errors, check to make sure that you have added all the HTML code in the correct area of the <code>index.html</code> file and that your image is located in the file path you specified with the <code>src</code> attribute.</p><h2 id="how-to-add-an-about-me-section-to-your-webpage">How To Add an “About Me” Section to Your Webpage</h2><p>Next, we will add a paragraph of text to the right of the image. Feel free to substitute the dummy text in this example with text of your own choosing.</p><p>We will create this text section by creating a <code><div></code> container and inserting text content inside.</p><p>In your “index.html” file, add the following code snippet after the image you added in the step above and before the closing <code></body></code> tag:</p><pre><code>... <span><span><span><</span>div</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>height</span><span>:</span>600px<span>;</span> <span>margin</span><span>:</span>100px<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span><</span>h2</span><span>></span></span>Hello <span><span><span></</span>h2</span><span>></span></span> <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>line-height</span><span>:</span> 2.0<span>;</span> <span>font-size</span><span>:</span>20px<span>;</span></span><span>"</span></span></span><span>></span></span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et magnis dis parturient montes nascetur ridiculus mus. Purus semper eget duis at tellus at urna condimentum mattis. Turpis in eu mi bibendum neque egestas. Rhoncus dolor purus non enim praesent elementum facilisis. Ipsum nunc aliquet bibendum enim facilisis gravida. Cursus turpis sa tincidunt dui ut ornare lectus. Enim nec dui nunc mattis enim ut. Sapien nec sagittis aliquam malesuada bibendum arcu vitae elementum curabitur. Tussa ultricies mi quis hendrerit dolor magna. Elit eget gravida cum sociis natoque penatibus et magnis dis. Enim tortor at auctor urna nunc id cursus metus.<span><span><span></</span>p</span><span>></span></span> <span><span><span><</span>p</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>line-height</span><span>:</span> 2.0<span>;</span> <span>font-size</span><span>:</span>20px<span>;</span></span><span>"</span></span></span><span>></span></span>Email me at <span><span><span><</span>a</span> <span>href</span><span><span>=</span><span>"</span>mailto:<span>"</span></span><span>></span></span> <span><span><span></</span>a</span><span>></span></span><span><span><span></</span>p</span><span>></span></span> <span><span><span></</span>div</span><span>></span></span> </code></pre><p>Let’s pause briefly to review each part of this code snippet:</p><ul><li>The <code><div style="height:600px; margin:100px;"></code> element creates a <code><div></code> container that has a <code>height</code> of 600 pixels and <code>margin</code> of 100 pixels.</li><li>The <code><h2></code> element adds a text header to our content.</li><li>The two <code><p style="line-height: 2.0; font-size:20px;"></code>tags create two paragraphs whose line height is expanded to 2.0 and whose font is 20 pixels.</li><li>The '<a href=“mailto:”> </a>` adds an email link to the email address.</li><li>The closing <code></div></code> tag closes our <code><div></code> container.</li></ul><p>Save your “index.html” file and reload it in the browser. The section below the top section of your webpage should now look like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvbWlkZGxlLXNlY3Rpb24ucG5n.webp" ></img></div></p><p>Your image and text should now be displayed as they are in the demonstration website. You may adjust the style properties in the code snippets to change the height, margins, font size or other style properties of your content.</p><p>Note that if your browser viewport is shrunk extensively, your text will eventually flow over into other elements on your page. To create layouts that are responsive to a range of devices, you’ll need to learn additional front end skills such as CSS (tutorial series coming soon) and Flexbox.</p><p>You should now have an understanding of how to arrange images and text side by side using <code><div></code> containers, the <code>style</code> attribute, and style properties. In the next and final tutorial of the series, we’ll learn how to create a website footer with the HTML <code><footer></code> element.</p>// Tutorial //<p><p>A website footer is the final block of content at the bottom of a webpage. Footers can contain any type of HTML content, including text, images, and links. In this final tutorial of the series, we’ll create the following basic footer for our webpage using a <code><footer></code> element:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvZm9vdGVyLnBuZw==.webp" ></img></div></p><p>To get started, paste the following code snippet after your closing <code></div></code> tag and before your closing <code></body></code> tag:</p><pre><code>. . . <span><!--Footer--></span> <span><span><span><</span>footer</span> <span><span>style</span><span><span>=</span><span>"</span><span><span>height</span><span>:</span>auto<span>;</span> <span>background-color</span><span>:</span>#F7C201<span>;</span></span><span>"</span></span></span><span>></span></span> <span><span><span><</span>h2</span><span>></span></span><Made with 🤍 at DigitalOcean<span><span><span></</span>h2</span><span>></span></span> <span><span><span></</span>footer</span><span>></span></span> . . . </code></pre><p>In this snippet, <code><!--Footer--></code> is a comment that will not be read by the browser and is used to help organize our <code>html</code> file for the purpose of human readability. Below this comment, we have added a <code><footer></code> element, specified its background color, and used the style attribute to set its height to automatically adjust to the content inside. A <code><footer></code> element is a semantic element in that its name tells the developer the purpose of the content. This is helpful for developers as well as for site visitors who use screen readers. Otherwise, the <code><footer></code> element works just like a <code><div></code> element.</p> <p>We have also added text content and an emoji inside the <code><h2></code> element. Feel free to change this text content with a message and emoji of your choosing.</p><p>Save your file and reload it in the browser to check the results. You should receive something like this:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9kamFuZ29fZ3VuaWNvcm5fbmdpbnhfMjAwNC9hcnRpY2xlcy9uZXdfbGVhcm5lcnMvdW5zdHlsZWQtZm9vdGVyLnBuZw==.webp" ></img></div></p><p>Notice that our footer content is not quite like the one in the demonstration site. Our footer content has a white bottom margin and the text has different styling. To remove the bottom margin and style the text, add the highlighted attributes to your <code><h2></code> element like so:</p><pre><code><h2 style="color:white; padding:40px; margin:0; text-align:center;"Made with 🤍 at DigitalOcean<span><span><span></</span>h2</span><span>></span></span> </code></pre><p>Save the file and reload it in the browser. You should now have a footer styled in the same manner as the demonstration site pictured at the top of this tutorial.</p><p>In this tutorial you have learned how to create and style a footer. You can now explore adding different types of content and styling to your footer using elements from this tutorial series.</p>// Tutorial //<p><p>When you share links on social media platforms, they’ll often be presented with rich imagery and a nicely formatted title, summary, and link, instead of plain text. For instance, here is how Twitter would display a link to this tutorial series:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9hcnRpY2xlcy9zb2NpYWwtbWV0YWRhdGEvaHRtbC1zb2NpYWwtc2hhcmUucG5n.webp" ></img></div></p><p>You can add these rich media social sharing capabilities to your site by including certain <code><meta></code> tags in the <code><head></code> of your HTML document. There are two main standards that determine how to format this metadata: Twitter Cards, and the Open Graph protocol.</p><p>In this tutorial you will learn how to add both Twitter Card and Open Graph metadata to your webpage.</p><h2 id="adding-twitter-card-metadata-to-a-webpage">Adding Twitter Card Metadata to a Webpage</h2><p>Twitter Cards are a metadata specification used by Twitter to display rich text, imagery, and video when links are shared on the service.</p><p>The full Twitter Card markup specification has many options, but you can start with the most basic information and expand from there.</p><p>To add basic Twitter Card metadata to your site, place the following <code><meta></code> tags in between your existing <code><head></code> and <code></head></code> tags:</p><pre><code><span><span><span><</span>meta</span> <span>name</span><span><span>=</span><span>"</span>twitter:card<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>summary_large_image<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>name</span><span><span>=</span><span>"</span>twitter:site<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>@digitalocean<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>name</span><span><span>=</span><span>"</span>twitter:title<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>Sammy the Shark<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>name</span><span><span>=</span><span>"</span>twitter:description<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>Senior Selachimorpha at DigitalOcean<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>name</span><span><span>=</span><span>"</span>twitter:image<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>https://html.sammy-codes.com/images/large-profile.jpg<span>"</span></span> <span>/></span></span> </code></pre><p>Be sure to update the highlighted portions with your own information. Let’s walk through each tag we just added:</p><ul><li><code>twitter:card</code>: this tag specifies the type of Twitter Card that should be displayed. The <code>summary_large_image</code> type displays a short summary with a large image preview.</li><li><code>twitter:site</code>: your Twitter username, or your site or company’s username.</li><li><code>twitter:title</code>: the title you’d like used in the card. This could match what you’ve put in your <code><title></code> tags, but it doesn’t have to.</li><li><code>twitter:description</code>: a brief description of the page that will be displayed under the title. This should be a maximum of 200 characters, and may be truncated even further when displayed.</li><li><code>twitter:image</code>: an image to show. Most standard image formats (JPG, PNG, GIF) are acceptable, but it must be less than 5MB in size. The image may be automatically cropped to display in differently sized cards, so it is a good idea to have the main focal point in the center.</li></ul><p>This metadata should result in a Twitter Card that looks like the following:</p><p><div class="imgBox"><img alt="Can you make a website with html for free?" data-orgimg="https://sg.cdnki.com/can-you-make-a-website-with-html-for-free---aHR0cHM6Ly9hc3NldHMuZGlnaXRhbG9jZWFuLmNvbS9hcnRpY2xlcy9zb2NpYWwtbWV0YWRhdGEvc2FtbXktc29jaWFsLXNoYXJlLnBuZw==.webp" ></img></div></p><p>For more information on other Twitter Card tags and options, visit the official Twitter Cards documentation.</p><h2 id="adding-open-graph-metadata-to-a-webpage">Adding Open Graph Metadata to a Webpage</h2><p>The Open Graph protocol is an open standard for metadata that many websites use to display rich link previews to their users. Sites like Facebook, LinkedIn, and Pinterest use Open Graph to display links.</p><p>The markup for Open Graph is similar to Twitter Cards: some <code><meta></code> tags in the <code><head></code> of your HTML document. A minimal set of Open Graph tags is shown below:</p><pre><code><span><span><span><</span>meta</span> <span>property</span><span><span>=</span><span>"</span>og:type<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>article<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>property</span><span><span>=</span><span>"</span>og:title<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>Sammy the Shark<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>property</span><span><span>=</span><span>"</span>og:description<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>Senior Selachimorpha at DigitalOcean<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>property</span><span><span>=</span><span>"</span>og:url<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>https://html.sammy-codes.com/<span>"</span></span> <span>/></span></span> <span><span><span><</span>meta</span> <span>property</span><span><span>=</span><span>"</span>og:image<span>"</span></span> <span>content</span><span><span>=</span><span>"</span>https://html.sammy-codes.com/images/large-profile.jpg<span>"</span></span> <span>/></span></span> </code></pre><p>Place these tags in the <code><head></code> of your HTML document, updating the highlighted portions as needed. The tags you’ll need are:</p><ul><li><code>og:type</code>: the “type” of the content being described. Some <code>type</code> examples are <code>article</code>, <code>book</code>, and <code>profile</code>. See the official <code>og:type</code> documentation for more.</li><li><code>og:title</code>: the title of the page. This could be the <code><title></code> of your page, or you could tailor it specifically for link sharing.</li><li><code>og:description</code>: a short description of the page. There is no specified character limit, but Twitter’s limit of 200 characters for this purpose is a good guideline.</li><li><code>og:url</code>: the permanent (canonical) URL of the page.</li><li><code>og:image</code>: an image to associate with the page.</li></ul><p>More information on the Open Graph protocol is available on the official Open Graph protocol website.</p><h2 id="testing-webpage-metadata">Testing Webpage Metadata</h2><p>There are a few tools you can use to preview how your meta tags would display on a website. The Open Graph Debugger is an unofficial simulator that shows both Twitter Card and Open Graph information, and doesn’t require an account to use.</p><p>The following official validators all require you to log into their service before using:</p><ul><li>Twitter Card validator</li><li>Facebook Sharing Debugger</li><li>LinkedIn Post Inspector</li><li>Pinterest Rich Pins Validator</li></ul><p>Many other sites have similar tools. If a site or community is important to you or your business, look for their developer documentation to see if they provide a similar service to test with.</p><p>You now know how to set up a minimal set of metadata to show rich link formatting on various social sites. Refer to the Twitter Cards and Open Graph documentation for more detailed information.</p><p><h4>Conclusion</h4></p><p><h2>Conclusion</h2><p>Congratulations, you have now built a website using HTML. You should now be familiar with how HTML elements, tags, content dividers, and attributes work and know how to structure HTML web pages, format text, and add images, links, and comments.</p><p>Feel free to continue modifying your site by adding additional content and styling. For some ideas on getting started, you may be interested in:</p><ul><li>Changing the color text or <div> elements with this tutorial</li><li>Adding additional webpages and links with this tutorial</li><li>Personalizing your text and image content</li><li>Adding background images to webpages and <code><div></code> elements with [this tutorial] (https://www.digitalocean.com/community/tutorials/adding-a-background-image-to-the-top-section-of-your-webpage-with-html)</li></ul><p>To learn how to publish your site for free using DigitalOcean’s App Platform, visit our tutorial How To Deploy a Static Website to the Cloud with Digital Ocean’s App Platform.</p><p>If you are interested in further developing your website development skills, we suggest you follow our tutorial series How To Build a Website With CSS. On its own, HTML is limited in its capacity and is not meant to be used to style a website. Today, most websites are developed with HTML and CSS, the Cascading Stylesheet language, along with a number of other tools and frameworks. Once you have a basic understanding of HTML and CSS, you will be ready to explore many other exciting web development tools that can be used along with them.</p><p>Want to teach this series in a remote or in-person workshop? Check out our How To Build a Website With HTML Workshop Kit that has everything you need to teach a ninety-minute workshop, including slides, speaker notes, and a landing page to help participants get started.</p><p>Check out all our Tutorial Series</p><p><h3 id="want-to-learn-more-join-the-digitalocean-community">Want to learn more? Join the DigitalOcean Community!</h3><p>Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.</p><p>Sign up</p><div class='paramage'></div> <div class="contenBreak"></div> <h3 id="is-a-html-website-free">Is a HTML website free?</h3> <div class="blockAnswer_acceptedAnswer">Design and production: <span class="FCUp0c rQMQod">the cost of designing and coding your HTML-powered site runs the gamut from free to thousands of dollars</span>. Typical Web hosting companies offer packages costing from $8 per month for hosting and a free domain name to $40 a month for HTML website maintenance.</div> <h3 id="how-do-i-create-a-free-html-website">How do I create a free HTML website?</h3> <div class="blockAnswer_acceptedAnswer"><div class='ListData'><span class="FCUp0c rQMQod">How to Make a HTML Website for Free in 3 Easy Steps?</span>.</div> <div class='ListData'>Write your website name. Find a name for your HTML website that helps your brand stand out..</div> <div class='ListData'>Add your preferred features. Create an excellent HTML website without any coding..</div> <div class='ListData'>Publish your HTML website. Test and launch your HTML website to bring your business online..</div> </div> <h3 id="can-i-make-my-own-website-using-html">Can I make my own website using HTML?</h3> <div class="blockAnswer_acceptedAnswer"><span class="FCUp0c rQMQod">HTML is the standard markup language for creating websites</span> and CSS is the language that describes the style of an HTML document. We will combine HTML and CSS to create a basic web page.</div> <h3 id="how-much-does-it-cost-to-make-a-website-with-html">How much does it cost to make a website with HTML?</h3> <div class="blockAnswer_acceptedAnswer">Basic Website Creating a basic HTML website can cost you somewhere <span class="FCUp0c rQMQod">between $250 and $500</span> (without including domain expenses and other associated costs).</div> </p></div> <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div> </td></tr></table> <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script> <div class="lazyhtml" data-lazyhtml> <script type="text/lazyhtml"> <div class="youtubeVideo"><h3>Video liên quan</h3> <iframe width="560" height="315" src="https://www.youtube.com/embed/Z_4QCwuLRnI?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe> </div> </script> </div> <div class="mt-3"> <div class="tags"> <a href="https://lovelyristin.com/tags/kode" class="tag-link">kode</a> <a href="https://lovelyristin.com/tags/html" class="tag-link">html</a> <a href="https://lovelyristin.com/tags/Appy Pie" class="tag-link">Appy Pie</a> <a href="https://lovelyristin.com/tags/Website to HTML" class="tag-link">Website to HTML</a> <a href="https://lovelyristin.com/tags/W3school CSS" class="tag-link">W3school CSS</a> </div> </div> <div class="post-tools"> <button data-postid="can-you-make-a-website-with-html-for-free" class="btn btn-answerModalBox"><img class="mr-1" alt="Can you make a website with html for free?" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="can-you-make-a-website-with-html-for-free" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Can you make a website with html for free?" src="/dist/images/svg/face-smile_16.svg">1</button> <button data-postid="can-you-make-a-website-with-html-for-free" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Can you make a website with html for free?" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Can you make a website with html for free?" src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button> </div> </div><!-- end question-post-body --> </div><!-- end question-post-body-wrap --> </div><!-- end question --> <div id="answers_can-you-make-a-website-with-html-for-free" class="answers"> </div><!-- end answer-wrap --> <div class="entryFooter"> <div class="footerLinkAds"></div> <div class="footerRelated"><div class="postRelatedWidget"> <h2>Bài Viết Liên Quan</h2> <div class="questions-snippet layoutNews border-top border-top-gray"> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-save-image-temporary-python"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-save-image-temporary-python---97e9e331fb733b17e258042cee1da276.webp" alt="Cara menggunakan save image temporary python"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-save-image-temporary-python">Cara menggunakan save image temporary python</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/python" class="tag-link">python</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/ekstensi-kode-studio-visual-html-css"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_ekstensi-kode-studio-visual-html-css---4504b9c86e510924348c86f384d9f5b6.webp" alt="Ekstensi kode studio visual html css"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ekstensi-kode-studio-visual-html-css">Ekstensi kode studio visual html css</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/html" class="tag-link">html</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/https-notfound-php"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_https-notfound-php---ac8a05b2180c7bf6bc91070e194a2c72.webp" alt="Https notfound PHP"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/https-notfound-php">Https notfound PHP</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-integer-to-date-python"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-integer-to-date-python---069902985eee2d1e54ad51c6f9361b3e.webp" alt="Cara menggunakan integer to date python"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-integer-to-date-python">Cara menggunakan integer to date python</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/python" class="tag-link">python</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/python-mengganti-karakter-dalam-file-teks"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_python-mengganti-karakter-dalam-file-teks---3ba7897bb176e8a6616e0eca5a02805f.webp" alt="Python mengganti karakter dalam file teks"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/python-mengganti-karakter-dalam-file-teks">Python mengganti karakter dalam file teks</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/python" class="tag-link">python</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-mengecek-nomor-npwp-yang-hilang"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-mengecek-nomor-npwp-yang-hilang---07291dd6fb1faec4233a811a3449c0ab.webp" alt="Cara mengecek nomor npwp yang hilang"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-mengecek-nomor-npwp-yang-hilang">Cara mengecek nomor npwp yang hilang</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bagaimana-anda-membuat-diagram-di-mysql"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_bagaimana-anda-membuat-diagram-di-mysql---5b69c5fb90ffb8fe428d9196d13f49d1.webp" alt="Bagaimana Anda membuat diagram di mysql?"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bagaimana-anda-membuat-diagram-di-mysql">Bagaimana Anda membuat diagram di mysql?</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/mysql" class="tag-link">mysql</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-contoh-perulangan-while-php"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-contoh-perulangan-while-php---38636c5c615e076e722429be06ff6296.webp" alt="Cara menggunakan contoh perulangan while php"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-contoh-perulangan-while-php">Cara menggunakan contoh perulangan while php</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/php" class="tag-link">php</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/marksheet-code-in-javascript"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_marksheet-code-in-javascript---a3d7aca0ada3292597fd1017021c636d.webp" alt="Marksheet code in JavaScript"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/marksheet-code-in-javascript">Marksheet code in JavaScript</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-perintah-dasar-python"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-perintah-dasar-python---66b7b359890b165b68a5a0efdae62ec4.webp" alt="Cara menggunakan perintah dasar python"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-perintah-dasar-python">Cara menggunakan perintah dasar python</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/python" class="tag-link">python</a> </div> </div> </div> </div><!-- end media --> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-baris-ungroup-di-excel"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-baris-ungroup-di-excel---b10aaedb2e3b7350208f6c72a1b03b50.webp" alt="Cara menggunakan baris ungroup di excel"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-baris-ungroup-di-excel">Cara menggunakan baris ungroup di excel</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/excel" class="tag-link">excel</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/apakah-bisa-transfer-dari-ovo-ke-gopay"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_apakah-bisa-transfer-dari-ovo-ke-gopay---b1260b1dd26e08454f5588419c9add89.webp" alt="Apakah bisa transfer dari OVO ke GoPay?"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/apakah-bisa-transfer-dari-ovo-ke-gopay">Apakah bisa transfer dari OVO ke GoPay?</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menghapus-squarespace-javascript-yang-tidak-terpakai"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menghapus-squarespace-javascript-yang-tidak-terpakai---11331bcb2d1afc447d7b9a7c619007a0.webp" alt="Cara menghapus squarespace javascript yang tidak terpakai"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menghapus-squarespace-javascript-yang-tidak-terpakai">Cara menghapus squarespace javascript yang tidak terpakai</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/javascript" class="tag-link">javascript</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bagaimana-anda-mengarahkan-ke-halaman-lain-di-html-setelah-mengirimkan"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_bagaimana-anda-mengarahkan-ke-halaman-lain-di-html-setelah-mengirimkan---ca36615c05b9f7cc959585b36a3e2aa8.webp" alt="Bagaimana Anda mengarahkan ke halaman lain di html setelah mengirimkan?"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bagaimana-anda-mengarahkan-ke-halaman-lain-di-html-setelah-mengirimkan">Bagaimana Anda mengarahkan ke halaman lain di html setelah mengirimkan?</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/html" class="tag-link">html</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/scrape-website-to-excel"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_scrape-website-to-excel---6ca4b4f38457e2688ec3ebde50891646.webp" alt="Scrape website to Excel"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/scrape-website-to-excel">Scrape website to Excel</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-php-maxinputvars-not-updating"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-php-max_input_vars-not-updating---5c19b1213c5ffcd1f97bab464f067680.webp" alt="Cara menggunakan php max_input_vars not updating"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-php-maxinputvars-not-updating">Cara menggunakan php max_input_vars not updating</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/php" class="tag-link">php</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-website-forum-php"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-website-forum-php---1f5e1239a9b21bcd6d64a354ffc344bd.webp" alt="Cara menggunakan website forum php"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-website-forum-php">Cara menggunakan website forum php</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/php" class="tag-link">php</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-aktivasi-kartu-brizzi-di-atm-bri"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-aktivasi-kartu-brizzi-di-atm-bri---dc26841f105c17ee6faeab0662d4f2a2.webp" alt="Cara aktivasi kartu BRIZZI di ATM BRI"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-aktivasi-kartu-brizzi-di-atm-bri">Cara aktivasi kartu BRIZZI di ATM BRI</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-const-javascript-adalah"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-const-javascript-adalah---93ab1a45eb6e7b220ec56ea0d0f86fc1.webp" alt="Cara menggunakan const javascript adalah"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-const-javascript-adalah">Cara menggunakan const javascript adalah</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/javascript" class="tag-link">javascript</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cara-menggunakan-mysql-aplikasi-apa"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://ap.cdnki.com/r_cara-menggunakan-mysql-aplikasi-apa---ae26930fa88b62de5eae83b04685fe68.webp" alt="Cara menggunakan mysql aplikasi apa?"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cara-menggunakan-mysql-aplikasi-apa">Cara menggunakan mysql aplikasi apa?</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/kode" class="tag-link">kode</a> <a href="/tags/mysql" class="tag-link">mysql</a> </div> </div> </div> </div><!-- end media --> </div> </div></div> </div> </div> </div><!-- end question-main-bar --> </div><!-- end col-lg-9 --> <div class="postContentRight"> <div class="sidebar"> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/google-sheets-difference-between-two-columns">Google Sheets difference between two columns</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/RepublicanNetworking" class="author">RepublicanNetworking</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-mengunduh-kamus-dengan-python">Cara mengunduh kamus dengan python</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/ChunkySending" class="author">ChunkySending</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/apa-perbedaan-list-dan-array-pada-python">Apa perbedaan list dan array pada python?</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/DisastrousMaple" class="author">DisastrousMaple</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/how-do-i-push-data-from-one-excel-workbook-to-another">How do I push data from one Excel workbook to another?</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/SorrowfulCountryman" class="author">SorrowfulCountryman</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-menggunakan-raise-vs-return-python">Cara menggunakan raise vs return python</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/SatisfyingInstruction" class="author">SatisfyingInstruction</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-konfigurasi-mysql-di-xampp">Cara konfigurasi mysql di xampp</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/BindingMortality" class="author">BindingMortality</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/spreadsheet-odoo">Spreadsheet odoo</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/LastingMahogany" class="author">LastingMahogany</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-mengubah-server-phpmyadmin">Cara mengubah server phpmyadmin</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/HandmadeWaitress" class="author">HandmadeWaitress</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-membuat-paragraf-di-css">Cara membuat paragraf di css</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/IndeterminateIndicator" class="author">IndeterminateIndicator</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://lovelyristin.com/cara-menggunakan-perbedaan-laravel-dan-php">Cara menggunakan perbedaan laravel dan php</a></h5> <small class="meta"> <span class="pr-1">1 năm trước</span> <span class="pr-1">. bởi</span> <a href="https://lovelyristin.com/author/TeemingAesthetics" class="author">TeemingAesthetics</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Xem Nhiều</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> </div><!-- end sidebar --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end question-area --> <!-- ================================ END QUESTION AREA ================================= --> <script>var questionId ='can-you-make-a-website-with-html-for-free'</script> <script>var postTime ='2022-10-11T15:12:25.868Z'</script> <script>var siteDomain ='lovelyristin.com'</script> <script type="text/javascript" src="https://lovelyristin.com/dist/js/pages/comment.js"></script> <!-- ================================ END FOOTER AREA ================================= --> <section class="footer-area pt-80px bg-dark position-relative"> <span class="vertical-bar-shape vertical-bar-shape-1"></span> <span class="vertical-bar-shape vertical-bar-shape-2"></span> <span class="vertical-bar-shape vertical-bar-shape-3"></span> <span class="vertical-bar-shape vertical-bar-shape-4"></span> <div class="container"> <div class="row"> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/about.html">Giới thiệu</a></li> <li><a href="/contact.html">Liên hệ</a></li> <li><a href="/contact.html">Tuyển dụng</a></li> <li><a href="/contact.html">Quảng cáo</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li> <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li> <li><a href="/privacy-statement.html">Quy định cookie</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/contact.html">Hướng dẫn</a></li> <li><a href="/contact.html">Loại bỏ câu hỏi</a></li> <li><a href="/contact.html">Liên hệ</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li> <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li> <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li> <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> <hr class="border-top-gray my-5"> <div class="container"> <div class="row align-items-center pb-4 copyright-wrap"> <div class="col-6"> <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" width="123px" height="21px" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script> </div> <!-- end col-lg-6 --><div class="col-6"> <div class="copyright-desc text-right fs-14"> <div>Bản quyền © 2021 <a href="https://lovelyristin.com"></a> Inc.</div> </div> </div><!-- end col-lg-6 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end footer-area --> <!-- ================================ END FOOTER AREA ================================= --><script> $( document ).ready(function() { setTimeout(showMoreButton, 3000); function showMoreButton(){ let minheight = 1000; minheight = parseInt($("#entryContent").innerHeight())/3; $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden'); $("#readmore_content").click(function(){ $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', ''); $(".readmore_content_exists").css('display', 'none'); }) } }); </script> <!-- template js files --> <!-- start back to top --> <div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang"> <img alt="" src="/dist/images/svg/arrow-up_20.svg"> </div> <!-- end back to top --> <script src="https://lovelyristin.com/dist/js/bootstrap.bundle.min.js"></script> <script src="https://lovelyristin.com/dist/js/moment.js"></script> <script src="https://lovelyristin.com/dist/js/read-more.min.js"></script> <script src="https://lovelyristin.com/dist/js/main.js?v=6"></script> <!-- Google Tag Manager (noscript) --> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "jxuz46z39u"); </script> </body> </html>