HTML CSS Java Basic Notes
HTML CSS Java Basic Notes
- Basic structure:
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
- Common tags: <h1> to <h6>, <p>, <a>, <img>, <table>, <ul>, <li>, <div>, <span>
Example:
p{
color: red;
font-size: 16px;
- Basic structure:
System.out.println("Hello World");