forked from vivinkv6/10-days-web-development-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1012 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
#header{
text-shadow: 4px 0px 5px rgb(143, 138, 138);
}
a {
text-decoration: none;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: linear-gradient(
rgb(237, 123, 75),
rgb(148, 136, 136)
);
background-repeat: no-repeat;
}
</style>
</head>
<body>
<h1 align="center" id="header">10 Days Web Development Challenge</h1>
<h2>Topics</h2>
<h1><a href="html.html">HTML</a></h1>
<h1><a href="css.html">CSS</a></h1>
<h1><a href="javascript.html">JavaScript</a></h1>
<h1><a href="git.html">Git</a></h1>
<h1><a href="github.html">Github</a></h1>
<h1>Project - calculator</h1>
</body>
</html>