-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (75 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
77 lines (75 loc) · 3.58 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
<!DOCTYPE HTML>
<!--THIS HOW U COMMENT-->
<!--USE MATERIAL DESIGN TO MAKE IT MORE APPEALING -->
<html>
<head>
<meta charset="UTF-8"> <!--ITS INFORMS COMPUTER WHAT KIND OF ENCODING HAS TO BE FOLLOWED-->
<title>PRATEEK</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<style>
body{
padding:0px;
margin: 0px;
font-family: 'Source Sans Pro', sans-serif;
}
#coolFacts{
background-color:coral
}
.bgGreen{
background-color:chartreuse;
}
</style>
</head>
<body style="background-color:#000000;color:#fff"> <!--#_ _ _ _ _ _ first 2 R, next 2 G and next 2 B and style is attribute and background color id value -->
<div class="bgGreen" style="text-align: center;height: 140px;" >
<h1>PRATEEK MEWARA</h1>
<h2>This is the official fan page of PRATEEK</h2>
<a href="https://www.google.co.in/" style="text-decoration: none;">Contact Me,click on this !!</a>
</div>
<img style="position: relative;margin-top:-139px;margin-right: 10px;" src="prateek.jpg" height='139px' width="10%" align="right" alt="This cannot be dislayed" >
<div style="margin: 20px;">
<h2>PRATEEK -AN ANDROID APP DEVELOPER</h2>
<p>PRATEEK WAS BORN ON 15 FEB 1998 ,Studied in Emmanual Mission School till class 7th then he moved to St Mary"s high School ,Mt. Abu
</p>
</div>
<div id="coolFacts" style="padding: 20px;">
<h2>PRATEEK -HOBBIES</h2>
<hr color=#000000>
<ol><!-- ol represents full list-->
<li>He loves dancing</li><!-- li represents individual element of list-->
<li>He loves singing </li>
<li>He has done fret work</li>
<li>paper cutting</li>
</ol>
</div>
<div style="padding: 20px">
<table cellpadding="30%" cellspacing="30%" border>
<tr>
<th>Name</th>
<th>Reg. No.</th>
<th>Contact</th>
</tr>
<tr>
<td>Prateek</td>
<td>17BCE0247</td>
<td><a href="https://www.linkedin.com/in/satkriti-singh-a82712155">Click Me</a></td>
</tr>
<tr>
<td>Satkriti</td>
<td>17BCE2348</td>
<td><a href="https://www.linkedin.com/in/satkriti-singh-a82712155">Click Me</a></td>
</tr>
</table>
</div>
<div style="text-align: center;padding-bottom: 20px;">
<h2>CONTACT PRATEEK MEWARA</h2>
<input type="text" style="width: 400px;height: 20px;" placeholder="YOUR NAME"> <br><br>
<!-- type is attribute, br tag will change the line -->
<input type="number" style="width: 400px;height: 20px;" placeholder="CONTACT NUMBER"><br><br>
<input type="email" style="width: 400px;height: 20px;" placeholder="EMAIL ADDRESS"><br><br>
<input type="textarea" style="width: 400px;height: 20px;" placeholder="TEXT"><br><br>
<input type="number" style="width: 400px;height: 20px;" min="8" max="10" placeholder="RATING"><br><br>
<button type="submit" style="width: 200px;height: 20px;">Submit</button>
</div>
</body>
</html>