-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiography.html
130 lines (111 loc) · 3.38 KB
/
biography.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
118
119
120
121
122
123
124
125
126
127
128
129
130
<!--
Name:Ayushkumar Patel
File:biography.html
Date:15 June 2024
Description: A biography file with css.
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Formatting a biography</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: hotpink;
font-size: 2em;
font-family: Georgia, "Times New Roman", Times, serif;
border-bottom: 10px dotted purple;
}
h2 {
font-style: italic;
font-size: 1.5em;
}
.job-title {
color: #999999;
font-weight: bold;
}
a:link, a:visited {
color: #fb6542;
}
a:hover {
color: green;
text-decoration: none;
}
.contact-info {
background-color: #eeeeee;
border: 5px solid purple;
padding: 10px; /* Padding to push content away from the border */
list-style-type: none;
}
.contact-info li {
margin-bottom: 10px;
}
/* Style for email link */
.contact-info .email {
color: green;
}
/* Style for web link */
.contact-info .web {
color: orange;
}
.description {
margin-bottom: 20px;
font-size: 1em;
line-height: 1.5em;
color: #333333;
}
ul {
background-color: #eeeeee;
border: 5px solid purple;
padding: 10px;
list-style-type: disc;
padding: 20px;
}
ul li {
margin-bottom: 5px;
}
a:link {
color: #fb6542;
}
ul li .email{
color: green;
text-decoration: none;
}
a:hover {
color: green;
text-decoration: none;
}
</style>
</head>
<body>
<h1>Ayushkumar Patel</h1>
<div class="job-title">Web Developer</div>
<p>
Far far away, behind the word mountains, far from the countries Vokalia
and Consonantia, there live the blind texts. Separated they live in
Bookmarksgrove right at the coast of the Semantics, a large language
ocean.
</p>
<p>
A small river named Duden flows by their place and supplies it with the
necessary regelialia. It is a paradisematic country, in which roasted
parts of sentences fly into your mouth.
</p>
<h2>Contact information</h2>
<ul>
<li>
Email:
<a href="mailto:[email protected]" class="email">[email protected]</a>
</li>
<li>
Web:
<a href="https://example.com" class="web">https://example.com</a>
</li>
<li>Tel: 123 45678</li>
</ul>
</body>
</html>