-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_elements.htm
More file actions
45 lines (35 loc) · 1.74 KB
/
basic_elements.htm
File metadata and controls
45 lines (35 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>basic syntax used in html</title> <!--to give title to our program-->
</head>
<body>
<!--basic heading syntax -->
<h1>WEB DEVELOPER</h1>
<h2>WEB DEVELOPER</h2>
<h3>WEB DEVELOPER</h3>
<h4>WEB DEVELOPER</h4>
<h5>WEB DEVELOPER </h5>
<h6>WEB DEVELOPER</h6>
<!--Basic paragraph tag -->
<p>you dont have to worry for learning the syntax,<br> just have a look in all </br>
you will know them by practice and refering internet at the time when you need</p> <!--'br' tag is to line break -->
<pre>this will show your content same like how you have written in the code
same space and same line break along with all the display content
</pre>
<!--for linking any file or anything else-->
<a href="https://akshayadsharmaliveyourdreams.home.blog/" ><button>visit my website</button>></a> <!--this button syntax itself provide buttons-->
<!--if ypu wish to open teh link in new tab then use target-->
<br></br>
<!--you can us ebutton a sinput as well as submit type-->
<input type="button" value="click me to input value">
<br></br>
<input type="submit" value="click me to submit value">
<a href="https://akshayadsharmaliveyourdreams.home.blog/" target='blank' ><br>visit my website in new tab</br></a>
<!--to display image on your website -->
<img src="webdeveloper.jpg" alt="web developer image" width="200px"> <!--use alt for backup-->
</body>
</html>