-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject2.html
More file actions
53 lines (46 loc) · 1.01 KB
/
project2.html
File metadata and controls
53 lines (46 loc) · 1.01 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
<!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>
#class{
height: 80px;
width: 100vw;
background-color: black;
display: flex;
justify-content: space-between;
align-items: center;
}
#text{
color: orange;
padding-top: 0px;
}
span{
color: white;
}
label{
color: white;
}
#parent{
width: 300px;
display: flex;
justify-content: space-between;
}
</style>
</head>
<body>
<div id="class">
<span id="text">Coding Thinker</span>
<div id="parent">
<span id="inside the text">Learn</span>
<span id="inside the text">Practice</span>
<span id="inside the text">Get hired</span>
<span id="inside the text">IDE</span>
<!-- <button>Login</button> -->
</div>
<button>Login</button>
</div>
</body>
</html>