-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (107 loc) · 5.03 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<head>
<title>Welcome to My Home Page</title>
<meta charset="utf-8">
<meta http-equiv="viewport" content="width" device-width="initial scale 0.1">
<meta name="discription" content="Welcome to Darls Portfolio">
<link rel="stylesheet" type="text/css" href="stan.css">
</head>
<body>
<div class="home-container">
<!-- header design -->
<div class="header-0">
<!-- navigation part -->
<div class="nav-nav">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()" style="float: left;">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="black" stroke-width="4"/>
<path d="M0,14 30,14" stroke="black" stroke-width="4"/>
<path d ="M0,23 30,23" stroke="black" stroke-width="4"/>
</svg>
</a>
</span>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="index.html">Home</a>
<a href="About.html">About</a>
<a href="Proj.html">Projects</a>
</div>
<script type="text/javascript">
function openSlideMenu(){
document.getElementById('side-menu').style.width = '250px';
document.getElementById('main').style.marginLeft = '250px';
}
function closeSlideMenu(){
document.getElementById('side-menu').style.width = '0';
document.getElementById('main').style.marginLeft = '0';
}
</script>
</div>
<div class="name-header">
<h4>Darl<span style="font-size: 19px;
color: #014421;
font-style: italic;"
>Portfolio</span></h4>
</div>
<div class="header-2">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li> <a href="Proj.html">Projects</a></li>
</ul>
</div>
</div>
<!-- Home Body design -->
<div class="body-0">
<div id="myPageContent" class="container-fluid">
<section id="home">
<div id="textSlider" class="row">
<!-- <div class="col-xs-12 col-sm-12 col-md-3 col-lg-4 iamCol">
<p>I</p>
<p>AM</p>
</div> -->
<div class="col-xs-12 col-sm-12 col-md-7 col-lg-8 slideCol">
<div class="scroller">
<div class="inner">
<p>Iroegbu Darlington</p>
<p>Web Developer</p>
<p>Web Designer</p>
<p>Copywriter</p>
</div>
</div>
</div>
</div>
</section
</div>
<div class="body-1">
<!-- <div class="body-1-0">
<h2>I'M Iroegbu Darlington</h2>
<h4 >WELCOME TO MY PORTFOLIO</h4>
</div> -->
<div class="sub-body-1">
<button class="btns"><a href="about.html">Explore More</a>
</button>
<hr style="width: 100%; margin-left: 200px;">
<div class="media-buttons">
<a href="https://www.linkedin.com/in/darlington-iroegbu-87b836293">
<img src="appmg/app (1).png" width="5%">
</a>
<a href="https://twitter.com/Darlington97841">
<img src="appmg/app (2).png" width="5%">
</a>
<a href="https://www.instagram.com/lord.wunder?igsh=cGNnMjJwbHIzMXV4">
<img src="appmg/app (3).png" width="5%">
</a>
<a href="https://m.facebook.com/profile.php?id=100061498465212">
<img src="appmg/app (4).png" width="5%">
</a>
</div>
</div>
<h5>Follow me Now</h5>
</div>
</div>
<!-- home page needs a better mobile view and an animation for the background image to look professonal -->
</div>
</body>
</html>