Code With Mark
Home
About
Resources
Contact

how to easily create a basic web page

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&nbsp;</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:

  • HTML Editor
  • Text Editors: Sublime Text and Notepad++
  • Learn all the HTML Tags - what they are and how use them
  • Learn basic CSS(language that describes the style of an HTML document)
  • Learn to master basic jQuery 

For Web Developers

Working Hard But Still Not Getting Ahead?

You finish a project, get paid, and then it's back to finding the next client.

Month after month, the cycle repeats.

That's why many web developers never build real financial freedom—even though they're highly skilled.

The developers creating long-term wealth are using those same skills to build SaaS products, plugins, and digital tools that generate recurring income.

What if your next project could pay you more than once?

Learn How To Build Monthly Income →
How to easily increase your google page speed rankHow to easily increase your google page speed rank←Previous
Easily Parse Any URL Address With JavascriptEasily Parse Any URL Address With JavascriptNext→

Related Posts

  • How Google Developers Think (And Why You Should Too)
  • Add Google Sign-In in 2 Minutes
  • Easily Edit HTML Table Rows Or Cells With jQuery

Top Posts Viewed

Google Sheets Timesheet Website App Script
1.98K views
Learn To Create YouTube Video Downloader
1.56K views
Easily Edit HTML Table Rows Or Cells With jQuery
1.2K views

Categories

Courses
Excel
Google Script
Javascript
jQuery
Microsoft Access
MongoDB
Node JS
PHP
Quick Tip
Uncategorized
Wordpress