-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
51 lines (47 loc) · 1.29 KB
/
me.html
File metadata and controls
51 lines (47 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<style>
*{
color: white;
font-family: monospace;
font-weight: bolder;
}
#page1{
background: red;
height: 1000px;
}
#page2{
background: blue;
height: 1000px;
}
</style>
<div class="row">
<div class="col-sm-6" id="page1">Welcome to my portfolio page.
<div class="div">
<center>
<span>Hi,</span>
<span>I'm Abraham Edet <br>
A junior Web Developer
</span>
</center>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="page2">This is right page
<div class="nav">
</div>
</div>
</div>
</body>
</html>