-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (64 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
70 lines (64 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en">
<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>::Index::</title>
<link rel="icon" href="./maxim2-world.svg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body{
background-repeat: no-repeat;
background-size: cover;
}
h2{
font-size: 40px;
font-style: italic;
}
.topnav {
background-color: lightcoral;
overflow: hidden;}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: salmon;
}
.topnav a.active {
background-color: gold;
color: white;
}
button{
font-size: 15px;
font-style: italic;
text-align: right;
}
</style>
</head>
<body background="./2.jpg">
<div class="main">
<div class="topnav">
<a class="active" href="#home"><i class="fa fa-fw fa-home"></i>Home</a>
<a href="#galleries"><i class="fa fa-fw fa-search"></i>Search</a>
<a href="#contact"><i class="fa fa-fw fa-envelope"></i>Contact</a>
<a href="#about"><i class="fa fa-fw fa-user"></i>Login</a>
</div>
<div style="text-align:right;">
<button style="background-color: silver;border-color:goldenrod;border-radius: 5px;"><a href="">Signup</a></button>
<button style="background-color: silver;border-color: goldenrod;border-radius: 5px;"><a href="">Login</a></button>
</div>
<br>
<div style="background-color: lightcoral; width: 100%;">
<h1 style="font-size: 50px;font-style: italic; color: black;text-align: center;">Nature photography</h1>
</div>
<h2 style="color: #D35400 ;">"Capturing emotion of places through photography"</h2>
</div>
</body>
</html>