-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
89 lines (73 loc) · 1.73 KB
/
aboutme.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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<div class="desktop"></div>
<div class="mobile"></div>
<div class="print"></div>
<style>
.columns {
border: none;
display: flex;
}
.columns > div {
border: none;
flex: 1;
}
img {
float: left;
}
.text {
font-size: 20px;
padding-left: 20px;
padding-top: 20%;
float: left;
font-family: century gothic;
}
body {
background-image: url('Photos/bg1.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right;
}
section {
margin-top: 100px;
margin-left: 100px;
}
#secondSection {
margin-top: 100px;
}
</style>
<title>About Me</title>
<link rel="icon" type="image/x-icon" href="Photos/icon.png">
<link rel="stylesheet" href="Styles/aboutme.css">
<a href="index.html"><img src="Photos/icon.png" width="45px"></a>
<div class="topnav">
<a href="index.html">Home</a>
<a class="active" href="aboutme.html">About Me</a>
</div>
<div class="dropdown">
<button class="dropbtn" onclick="myFunction()"><a href="portfolio.html">Portfolio
<i class="fa fa-caret-down" style="font-size:24px"></i>
</a></button>
<div class="dropdown-content" id="myDropdown">
<a href="progress.html">My Progress</a>
<a href="nm.html">Northwestern Mutual - WERG</a>
<a href="#">Project #3</a>
</div>
</div>
<div class="topnav">
<a href="https://www.linkedin.com/in/phanyialo/" target=_blank>LinkedIn</a>
</div>
</div>
</head>
<body>
<br><br><Br>
<section>
<h1>hello world.</h1>
<div>
<p>get to know me<p>
</div>
</section>
<script src = 'JS/index.js'></script>
</body>
</html>