tsd1303602

Home » Uncategorized » Static Web Site

Static Web Site

Recent Comments

Categories

Static website can be defined as a website which is a set of HTML files in where each and every files showing a physical page of a website. Static web site follows HTML, JavaScript and CSS code. In static website each and every page represent separate HTML. For this reason when anyone visit the homepage the user can view the actual homepage file. Static Web site is opposite of Interactive Website

 Indeed if two pages contain a portion of content which is identical for example footer in this case both portion contain two versions. So when web developer going to update his work he or she has to do this twice as once on each.
It is hard to tell immediately after see that it is static website or not. This web site is completely different from dynamic web site. Nowadays there are many static website are available. Most of the small business company which wants to deliver simple information without any blare or buzzer that one could be a static website. To update this static website persons need who has more knowledge about development of web design. To the cost concept this static website is so cheap to develop and host.

E Books, emails, social media profiles (not feeds), banner ads, landing page are some example of this static website. There are so many features, advantages and disadvantages of this Static web site

\

To create basic static website by using basic HTML code

<html>

<head>

    <title>HTML Headings & Paragraphs</title>

</head>

<body>

    <h1>

        This is heading</h1>

    <p>

        Here is the paragraph for this heading.

        Headings and paragraphs are the basic elements

        of any html document.

    </p>

    <h4>

        Importance of paragraph</h4>

    <p>

        Paragraphs are used to publish the written contents.</p>

</body>

</html>


Leave a comment