how to write first html code

Solutions on MaxInterview for how to write first html code by the best coders in the world

showing results for - "how to write first html code"
Reece
28 Apr 2019
1<!-- html version here -->
2<html>
3<head>
4	<title>The title goes here</title>
5	<!-- Link for your css and javascript files -->
6	<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
7</head>
8<body>
9		<!-- your code goes here -->
10		<p><i class='bx bx-wink-smile'></i> Welcome to my first html code</p>
11		Visit us for more coding @<a href="https://www.codemodes.com/">codemodes</a>
12	<!-- you can also add javascript code or external links here -->
13</body>
14</html>
15
16<!-- 
17Now save the file as index.html
18and run it in your browser -->
similar questions
html first line indent