-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
132 lines (116 loc) · 3.27 KB
/
about.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
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Definitive Website</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" />
<style>
/* Add some basic styles to the body element */
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
/* Change background color for the main content */
main {
background-color: #555;
}
/* Add some styles to the header element */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* Add some styles to the navigation menu */
nav {
background-color: #555;
overflow: hidden;
}
/* Add styles to the navigation menu links */
nav a {
color: #fff;
float: left;
font-size: 16px;
padding: 14px 16px;
text-align: center;
text-decoration: none;
transition: background-color 0.3s ease;
}
/* Add styles to the active navigation menu link */
nav a.active {
background-color: #4CAF50;
}
/* Add hover styles to the navigation menu links */
nav a:hover {
background-color: #4CAF50;
}
/* Add some styles to the main content section */
section {
margin: 20px;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
border-radius: 5px;
}
/* Add some styles to the section heading */
section h2 {
margin-top: 0;
font-size: 28px;
color: #333;
}
/* Add some styles to the section paragraph */
section p {
font-size: 16px;
line-height: 1.6;
color: #666;
}
/* Add some styles to the footer */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
box-shadow: 0 -2px 4px rgba(0,0,0,0.2);
}
/* Add some styles to the footer paragraph */
footer p {
margin: 0;
font-size: 14px;
color: #999;
}
/* Add some styles to the footer link */
footer a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}
/* Add hover styles to the footer link */
footer a:hover {
color: #4CAF50;
}
</style>
</head>
<body>
<main>
<header>
<h1>DevOps Project - Yaron Lavi</h1>
</header>
<section>
<h2>I'm just a simple dude.</h2>
</section>
<footer>
<p>© 2023 Yaron Lavi</p>
<p>
Contact me at <a href="mailto:[email protected]">[email protected]</a>
</p>
</footer>
</main>
<nav>
<a href="index.html" >Home</a>
<a href="how.html" >How I made it</a>
<a href="about.html" class="active">About Me</a>
</nav>