design

Where should I start with software?

December 6, 2023

I started programming with Visual Basic. Later I learned Html, CSS and Javascript. Then I started developing projects with PHP and ASP.

As backend, I generally do PHP-oriented development. Now that I feel more comfortable, I wanted to write an article for you.

My recommendation for starting software would be Visual Basic. So what is Visual Basic?


Visual Basic (VB) is a programming language developed by Microsoft. Visual Basic, which has a simple and user-friendly structure, is considered an ideal language for beginner programmers. It is a visual programming language, meaning users can often develop applications by dragging and dropping objects on a user interface and simply adding code.

Visual Basic is often used to develop desktop applications on the Windows platform. It can easily work on GUI (Graphical User Interface) and offers a rich library of frequently used functions. Although there are different versions of Visual Basic, the most commonly used are Visual Basic 6.0 and Visual Basic .NET.

Visual Basic is known for its user-friendly interfaces, rapid prototyping capabilities, and easy-to-understand syntax. However, focusing on the .NET platform over time, Microsoft has developed a new version of Visual Basic that is compatible with the .NET Framework. In this way, Visual Basic .NET includes more modern programming features and extensive library support.

So for someone starting out, using Visual Basic is important for the next level.

Let's see what to do next.

I generally develop applications on the Web. You can tell I'm good on the web.

If we want to develop a project on the web, the technologies we need to know first are HTML, CSS and JavaScript.

What is HTML in short?

Hypertext Markup Language is the standard text markup language used to create web pages.

Knowing HTML allows us to design websites. In short, we need to know HTML more or less

What is CSS in Brief?

Cascading Style Sheets is a markup language that offers extra possibilities in the field of text and formatting in addition to HTML.

We can develop user-specific interfaces with CSS. For example, we can shape a blog page specifically for the user. In this way, CSS provides us with special contents in visualization.

What is Javascript in Brief?

JavaScript is a programming language that, along with HTML and CSS, is one of the core technologies of the World Wide Web. More than 97% of websites use JavaScript on the client side for web page actions.

We see Javascript on almost all websites. It is possible to do many things on our website with Javascript. Click here to look in more detail.

If you want to make a website, we need to know HTML, CSS and Javascript.

Learning these technologies will help you make Mobile Applications and Desktop applications at the next level. It helps us learn and understand other programming languages. You may ask: Can't I develop a Mobile Application directly? Of course you can improve, but you may have a hard time.

Some Html, Css, jJavascript Codes;

Html sample code

index.html

html
<!DOCTYPE html>
<html>
<head>
<title>Sayfa Başlığı</title>
</head>
<body>

<h1>Bu bir başlıktır.</h1>
<p>Bu bir paragraftır.</p>

</body>
</html> 

In the example above, the screen says "This is a heading" under "This is a paragraph".

Css sample code

style.css

css
body {
    background-color: red;
}

h1 {
    color: yellow;
    text-align: center;
}

p {
    font-family: verdana;
    font-size: 20px;
} 

In the example above, the red h1 tag in the background of the body area is a tag given to headings in CSS. p represents paragraph.

Javascript sample code

main.js

js
function hello(){
    alert('Hello JS!');
} 

There is an example function above. In this function, a box appears on the screen in Javascript and says Hello JS in it.

"
kabib / 2024-11-18

Hmmmmm

8 + 7 =