-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (99 loc) · 2.87 KB
/
Copy pathindex.html
File metadata and controls
110 lines (99 loc) · 2.87 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<html>
<head>
<title>Jadu Jobs</title>
<link rel="stylesheet" href="./index.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,400;0,900;1,400&display=swap"
rel="stylesheet"
/>
<!-- Internal CSS -->
<!-- <style>
h2 {
color: magenta;
}
</style> -->
</head>
<body>
<h1 id="logo-text" class="main-text asd">JADU Fellowship</h1>
<span>Center</span>
<!-- Paragraph Tags -->
<p>Hello <span>WORLD! </span></p>
<p>Hello <span>World 2!</span></p>
<p>hello world 3!</p>
<p>Hello World 4!</p>
<!-- Heading Tags -->
<!-- Heading Tags -->
<!-- Heading Tags -->
<!-- Heading Tags -->
<!-- SHIFT + ALT + UP/DOWN -->
<h1 style="color: green">Heading 1</h1>
<h2 style="color: maroon">Heading 2</h2>
<h3 class="main-text">Heading 3</h3>
<h4 id="logo-text2">Heading 4</h4>
<h5 class="main-text">Heading 5</h5>
<h6 class="secondary-text">Heading 6</h6>
<h2>Heading 8</h2>
<!-- List Items -->
<!-- Unordered List -->
<ul style="list-style-type: square">
<li>Google Chrome</li>
<li>VS Code</li>
<li>Git</li>
<li>Postman</li>
</ul>
<h1></h1>
<!-- Ordered List -->
<ol type="a">
<li>Google Chrome</li>
<li>VS Code</li>
<li>Git</li>
<li>Postman</li>
</ol>
<!-- Anchor Tags (Links) -->
<ul>
<li>
<button>
<a href="https://www.google.com/intl/en_pk/chrome/">Google Chrome</a>
</button>
for Browser
</li>
</ul>
<p>
<a href="https://www.google.com/intl/en_pk/chrome/">Google Chrome</a>
for Browser
</p>
<!-- Images -->
<img
src="./images/snapmoji.jpg"
alt="Snapmoji of Arsalan"
width="100"
height="100"
/>
<img
src="https://jadujobs.com/wp-content/uploads/2020/10/Secure-remote-work-BANNER.jpg"
/>
<div>
<h2>This is DIV Container</h2>
<span>This is SPAN</span>
<span>This is SPAN 2</span>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda
aperiam, illum doloribus aut a reiciendis repudiandae inventore eaque at
dolorum provident quo numquam consequuntur laborum, earum ducimus
suscipit amet quisquam!
</p>
</div>
<button disabled>Click ME!</button>
<input type="password" />
<button><a href="./signup.html">Sign up Here</a></button>
<div class="div_c">
<h1 class="hover_me">This is inside DIV</h1>
</div>
<a href="https://google.com">Take me to Google</a>
<a href="https://facebook.com">Take me to Facebook</a>
<a href="https://microsoft.com">Take me to Microsoft</a>
<input class="input_place" type="text" placeholder="I'm Place holder" />
<h1>Footer</h1>
</body>
</html>