-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.html
76 lines (62 loc) · 1.4 KB
/
github.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home_Github</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
#pexel {
position: absolute;
width: 60%;
margin-top: 10%;
margin-left:20%;
}
.topnav {
overflow: hidden;
background-color: rgba(112,112,112,1);
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 1em;
font-family: Segoe UI;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
#name{
color: rgba(112,112,112,1);
font-size: 4em;
margin-top:1%;
background-color: white<;
}
</style>
</head>
<body>
<div id="wrappa">
<img id="pexel" src="pe.png">
<div id="name">
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="galerie.html">Galerie</a>
<a href="#about">Infos</a>
<div style="padding-left: 16px">
</div>
</div>
</body>
</html>