Start Your Career as Web Developer

Software Development

Technology has developed rapidly, making the technology capable of helping human needs and even keeping up with human abilities. This is very useful for people to increase their productivity at work. Creating software to help people is fun and challenging because we have to determine the demand for a market, and what people need. Don't worry, even though it looks difficult you can quickly start learning to make software, so in this blog, I will teach you a little bit of software development for a website platform from scratch.

How To Create a Simple Website

Before we start to create a website you need to learn a scripting language, namely HTML, and CSS. Html is used to develop website content such as website titles, paragraphs, insert images, and so on, while CSS is used to customize and decorate a website, such as changing the text color, changing the background color, and so on.

Here are steps to create your first website :

1. Navigate to your documents folder (it's up to you what folder you want), and then create a     new file, we call it hello.html.


2. After that open the Hello.html file with notepad, and add this code 

    code : 
    
    <html>
        <body>
            <p>This is my first web</p>
        </body>
    </html>

    

3. Now after you save the code above, open the Hello.html file with the browser

    
    Then you recently created your own website.


    
    






    
    






Comments