-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (71 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> Rajat will learn to code </title>
</head>
<!= how to add text besides your photo(see the website)>
<body>
<table cellspacing="5">
<tr>
<td><img src="r.jpg" alt="rajat photo"></td>
<td><h1> Rajat Joshi </h1>
<p><em>Studying engineering in<strong><a href="https://mait.ac.in/">MAIT</a></strong></em></p>
<p>Nothing much to say in the bio. 🙏 🙏</p></td>
</tr>
</table>
<hr size="3">
<h3><strong>Education</strong></h3>
<ul>
<li>
High School - AFBBS
</li>
</ul>
<br> <a href="hobbies.html">Hobbies</a>
<br> <a download href="https://web.stanford.edu/group/csp/cs21/htmlcheatsheet.pdf">cheatsheet</a>
<br>
<a href="contactme.html">Contace Me</a>
<hr>
<!= How to add tables in a html file.>
<table>
<th>Name</th>
<th>Age</th>
<tr>
<td>Rajat</td>
<td>25</td>
</tr>
<tr>
<td>Angela</td>
<td>37</td>
</tr>
</table>
<hr>
<h3>My Skills</h3>
<table cellspacing="10">
<tr>
<td>C++</td>
<td>😊😊😊😊😊</td>
</tr>
<tr>
<td>Web D</td>
<td>😊😊😊</td>
</tr>
</table>
<!= how to input name, password i.e just like a form.>
<form class="" action="index.html" method="post">
<label>username</label>
<input type="user name" name="" value=""><br>
<label>password</label>
<input type="password" name="" value=""><br>
<input type="submit" name="">
</form>
<hr>
<form class="" action="[email protected]" method="post" enctype="text/plain;">
<label>Email id </label>
<input type="email" name="" value=""><br>
<label>Your Message</label><br>
<textarea name="Your message" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>