It’s now been several years since this page was up.
Lot’s of things with web apps development / iOS & Android apps / PWA etc. happened.
Many great new Frameworks came out – Angular, React and Vue – these are in 2024 the key players
for everything regarding applications browser or mobile hybrid development when it comes to UI/UX.
So let’s get back with this blog to have fun with development – in short – webapps in action!
TypeScript Code Block
const hello = () => {
console.log("world")
}
hello();
C# Code Block
// Comment
Console.WriteLine("Hello World");
HTML Code Block
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link rel="stylesheet" href="css/main.css" />
<link rel="icon" href="images/favicon.png" />
</head>
<body>
<script src="js/scripts.js"></script>
</body>
</html>
Some Image
Leave a Reply
You must be logged in to post a comment.