-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
117 lines (103 loc) · 6.38 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="makeover.css">
<title>Hackers Tribe Foundation</title>
</head>
<body>
<div class="level">
<div class="l1">
<div class="main">
<h1>Hackers Tribe Official Website</h1>
</div>
<div class="dmain">
<h2> What we<strong> will learn</strong> in this course !!</h2>
<p class="p1">My name is Deep Choudhury<br>
<b>Contact me on my phone no :</b> <a href="+91 6294135066"target="_blank">+91 6294135066</a><br>
<b>Contact with us via E-mail :</b> <a href="mailto:hackerstribeofficial@gmail.com"target="_blank">hackerstribeofficial@gmail.com</a>
</p>
</div>
<div class="img">
<img src="HACKERS TRIBE.png" alt= "This is hackers tribe option">
</div>
<div class="p420"> <p> This is hackers tribe logo<br></div></p>
</div>
<div class="l4">Notice Board</div>
<div class="clear"></div>
<div class="l2">
<p class="p2">
<b>This is our official instagram page:</b><a href="https://www.instagram.com/hackers_tribe_official/"target="_blank"> link of hackerstribe instagram page</a><br>
<b>This is another image of hackers tribe:</b><a href="Student Cyber community.png"target="_blank"> Link of another picture of hackers tribe</a><br>
<b>This is hackers Tribe official Facebook page :</b><a href="https://www.facebook.com/hackerstribeofficial/"target="_blank"> Tap to open facebook page</a><br>
</p>
<h3> Facts about Cyber Security </h3>
<p> Some of the facts about Cyber Security. 95% of breached records came from only three industries in 2016
Government, retail, and technology. The reason isn’t necessarily because those industries are less diligent in their protection of customer records. They’re just very popular targets because of the high level of personal identifying information contained in their records.
</p>
<form> <!------- Form is used for creating a form for user input -->
<input type="text" placeholder="Name" name="name"> <!-- <input "->this is used to input" type="" "->This is used to type of input " name=""> "->This is used to detect the type to user" --> <!-- here test is used to input a a text form -->
<input type="password" placeholder="Password" name="password"> <!--Here password is used to make a password text where you can't see the password-->
<input type="email" placeholder="email id" name="email">
<input type="radio" name="gender" value="male">: Male<input type="radio"name="gender" value="female">: Female<input type="radio"name="gender" value="Transgender">: Transgender
<!--here radio is used to make a radio box to select any thig and we maintion any product for radio by using -> : and value will contain the product value -->
<input type="checkbox" name="" value="yes">:continue by clicking term and conditions <!-- cheakbox is used to cheaking for ex:- chreaking term and condition -->
<select placeholder="Country"> <!-- <select> tag is used to creat drop down list of options -->
<option>Chose an Country</option><!-- <option> tag is used to define the possible options to choose from. The tag is put into the select tag-->
<option value="India">India</option>
<option value="Indonesia">Indonesia</option>
<option value="United_states">United States</option>
<option value="Bangladesh">Bangladesh</option>
<option value="Pakistan">Pakistan</option>
</select>
<input type="submit" value="click to submit" name="submit"> <!-- here type submit is used for submit button on web page -->
<button value="submit">submit</button> <!-- <button> tag is used to created a clickable button on webpage -->
<input list="Countries" placeholder="Countries">
<datalist id="Countries"> <!-- <datalist> tag is used to provide an auto complete feture on form element. IT PROVIDES A LIST OF PREDEFIEND OPTIONS TO THE USER TO SELECT DATA-->
<option value="In">India</option>
<option value="Indo">Indonesia</option>
<option value="USA">United States</option>
<option value="Bg">Bangladesh</option>
<option value="Pk">Pakistan</option>
</datalist>
<input list="name" placeholder="Name">
<datalist id="name">
<option value="Deep">Deep Choudhury</option>
<option value="Arindam">Arindam Ghosh</option>
<option value="Srijan">Srijan Datta</option>
<option value="Falguni">Falguni Sarkar</option>
<option value="Sankhaya">Sankhaya Joti Dhar</option>
<option value="Sivam">Sivam Talukdar</option>
<option value="Aniket">Aniket Ghosh</option>
<option value="tanusree">Tanusree haldar</option>
<option value="Yugam">Yugam Ariyan</option>
<option value="Aniruddha">Aniruddha Das</option>
<option value="Saborno">Saborno Biswas</option>
<option value="Ronak">Ronak De</option>
</datalist>
<input type="time" name="">
<input type="date" name="">
<details>
<option value="In">India</option>
<option value="Indo">Indonesia</option>
<option value="USA">United States</option> <!-- iT IS USED FOR DETAILS BAR -->
<option value="Bg">Bangladesh</option>
<option value="Pk">Pakistan</option>
<hr>
<p>Hello I am Deep . My father name is Debabrata Choudhury. My mother Name is Monika Choudhury. We are only for NGO perpouses if you want to join our community then please give us only 50 rs per month .... Thank you</p>
</details>
</form>
</div>
<div class="l3">
<h2>Here is the 2nd heading</h2>
<p class=p3>
We didn't support any <u>illigal activities</u>.<br>
We are here for security purposes only.
</p>
<p class="id1">
Here we are discussing about what security you needed to be safe on the Internet <br>
We are discussing of security and if you need any support please contect to our security pages.
</p>
</div>
</div>
</body>
</html>