-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 2.2 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My First Website</title>
</head>
<body>
<h1>Welcome to Full Stack Development Course</h1>
<p>
I want to become a Full Stack Developer and here I am gonna showcase my
projects.
</p>
<hr />
<h2>@typography</h2>
<p>Here we will learn about differenet types of headings</p>
<h5>This is the smallest heading tag</h5>
<small>This is the smallest text</small>
<hr />
<h2>@container</h2>
<h3>Fluid Container</h3>
<p>This container will go till the end of the page</p>
<h3>Center Container</h3>
<p>This container will go till the specified width</p>
<hr />
<h2>@Links</h2>
<a href="/">Primary Link</a>
<!-- This link will not go to different page -->
<a href="/">Secondary Link</a>
<hr />
<h2>@lists</h2>
<h3>Unordered lists</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
</ul>
<hr />
<h3>Ordered lists</h3>
<ol>
<li>Frontend Developer</li>
<li>Backend Developer</li>
<li>Full Stack Developer</li>
</ol>
<hr />
<h3>Inline Elements list</h3>
<ul>
<li>C</li>
<li>Java</li>
<li>Python</li>
</ul>
<hr />
<h3>Reverse order list</h3>
<p>This will print the list in reverse order</p>
<ol>
<li>DBMS</li>
<li>DS</li>
</ol>
<hr />
<h2>@Nav</h2>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/">Projects</a></li>
<li><a href="/">Blogs</a></li>
<hr>
<header>
<img src="image/web.svg">
</header>
<hr>
<section>
<h2>@Section</h2>
<h3>White Section</h3>
<p>This section will have white background</p>
<h3>Off-White Section</h3>
<p>This section will have lighter background</p>
</section>
<hr>
<footer>
<h2>@Footer</h2>
<ul>
<li>LinkedIn</li>
<li>Twitter</li>
<li>Facebook</li>
</ul>
</footer>
</body>
</html>