Create Website With HTML Tags Only
Create Website With HTML Tags Only <!DOCTYPE Html> <html> <head> <title> Create Website With Html Tags Only </title> </head> <body>…
Simple Javascript Example Script
<!DOCTYPE html> <html> <head> <title>Simple Javascript Example Script</title> <script type=”text/javascript”> document.write(‘Simple Javascript’); </script> </head> <body> </body> </html>
HTML Tag List
<!DOCTYPE html> Declaration html document type <html> <head> <title>This is document title</title><meta > </head> <body> <h1>This is a heading</h1> <h1>This…