Do you want to get into web development but not sure if you should invest the time? Learn if it's right for you to get into it.
Basic HTML Page Template:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My First Web page</title>
<meta name="description" content="page description">
<meta name="keywords" content="keywords,code,mark,code with mark,">
</head>
<body>
<p>This is my first web page ever... it looks cool..</p>
<p><strong>I am like this </strong></p>
</body>
</html>
HTML Page Template With External Scripts
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Libs Page </title>
<meta name="description" content="this page has libs">
<meta name="keywords" content="keywords,code,mark,code with mark">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function($)
{
$('body').append('Some text added auto');
});
</script>
</head>
<body>
</body>
</html>
Resources:
You spend weeks building a project.
Your client pays you.
Then the income stops.
Meanwhile, other developers are turning similar skills into products that generate revenue month after month.
A SaaS, plugin, web app, or digital product can continue bringing in customers long after it's launched.
The real question isn't whether you can build one.
It's how much money you're leaving on the table by not starting.
Learn How To Build Monthly Income →