-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
115 lines (109 loc) · 4.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="text/html" http-equiv="Content-Type" />
<link rel="stylesheet" type="text/css" href="style.css">
<title>Email Signature</title>
</head>
<body>
<table>
<!-- The table has one row and three data cols, last col is itself a table -->
<tbody>
<tr>
<!-- ==================== SECTION #1 ==================== -->
<td class="leftcol">
<!-- Name, Profession and Company Name -->
<span class="td1">
<a target="_blank">
Divyanshi Dixit
</a>
</span>
</br>
<span class ="td2">
<a href="https://divi-259.github.io/" target="_blank">
Software Engineer
</a>
</span>
</br>
<!-- Link Section for Social Media and other relevant links-->
<!-- Linkedin -->
<span>
<a class="links"
href="https://www.example.com/"
target="_blank">
<!-- Use the website https://i.ibb.co/ to host your image for free -->
<img alt="linkedin" class="icon" src="https://i.ibb.co/6tYqxy7/linkedin.png">
</a>
</span>
<!-- GitHub -->
<span>
<a class="links"
href="https://www.example.com"
target="_blank">
<img alt="github" class="icon" src="https://i.ibb.co/sykYvJF/github.png">
</a>
</span>
<!-- HashNode -->
<span>
<a class="links"
href="https://www.example.com"
target="_blank">
<img alt="HashNode" class="icon" src="https://i.ibb.co/9H1rfzd/hashnodeicon.png">
</a>
</span>
<!-- Leetcode -->
<span>
<a class="links"
href="https://www.example.com"
target="_blank">
<img alt="Leetcode" class="icon" src="https://i.ibb.co/8bmTtrm/leetcode.png">
</a>
</span>
<!-- Geeksforgeeks -->
<span>
<a class="links"
href="https://www.example.com"
target="_blank">
<img alt="Geeksforgeeks" class="icon" src="https://i.ibb.co/26kZGt8/g4g.png">
</a>
</span>
</td>
<!-- ==================== DIVIDER ==================== -->
<td class="divider"></td>
<td style="font-family: inherit; padding: 0; margin: auto;">
<!-- ==================== SECTION #2 ==================== -->
<table class="subtable">
<tbody>
<!--Contacts -->
<tr>
<td class="subtd1">
<!-- Phone -->
<span class="contact">Mobile No:</span>
<a>
(555) 123-4567
</a>
<br>
<!-- Email -->
<span class="contact">Email: </span>
<a href="mailto:divyanshi259dixit@gmail.com">
divyanshi259dixit@gmail.com
</a>
<br>
<!-- Address -->
<span class="contact">Address: </span>
<a>
123 Main Street
Anytown, USA
Postal Code: 12345
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>