-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (88 loc) · 2.67 KB
/
index.html
File metadata and controls
91 lines (88 loc) · 2.67 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Split screen layout</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="wrapper">
<div id="leftDiv">
<span id="menuIcon">☰</span>
<a href="#">
<div id="design">
<p>See my design project</p>
</div>
</a>
</div>
<div id="rightDiv">
<a href="#">
<div id="code">
<p>See my code project</p>
</div>
</a>
</div>
<div id="about">
<div id="left_panel">
<h2>About</h2>
<p>Lorem ipsum asidnasi oiasf as aoihdas o aofh do oah asod oh ofh sdofih
sdifsd fisd dsoif odfisd o sdso osd ofn osdi doh oh od id voiadh asd shidf
oisdf iohf on aosih aoihf ohia ohiiosd foaif dsdih of aj apj aspp sojf apa</p>
<p>Lorem ipsum asidnasi oiasf as aoihdas o aofh do oah asod oh ofh sdofih
sdifsd fisd dsoif odfisd o sdso osd ofn</p>
<p>Follow us on Instagram</p>
<a href="https://www.instagram.com"><img src="image/instagram_white.png"></a>
</div>
<div id="image_container">
<img class="about_image" src="image/image1.jpg">
<img class="about_image" src="image/image2.jpg">
<img class="about_image" src="image/image3.jpg">
<img class="about_image" src="image/image4.jpg">
<img class="about_image" src="image/image5.jpg">
<img class="about_image" src="image/image6.jpg">
<img class="about_image" src="image/image7.jpg">
<img class="about_image" src="image/image8.jpg">
</div>
</div>
<div id="portfolio">
</div>
<div id="footer">
<img id="footer_logo" src="image/yourlogo.png">
<div class="column left">
<h3>SERVICES</h3>
<ul>
<li><a href="#">link 1</a></li>
<li><a href="#">link 2</a></li>
<li><a href="#">link 3</a></li>
<li><a href="#">link 4</a></li>
<li><a href="#">link 5</a></li>
<li><a href="#">link 6</a></li>
</ul>
</div>
<div class="column center">
<h3>EXPLORE</h3>
<ul>
<li><a href="#">link 1</a></li>
<li><a href="#">link 2</a></li>
<li><a href="#">link 3</a></li>
</ul>
</div>
<div class="column right">
<h3>CONTACT</h3>
<ul>
<li>Email: email@yahoo.ca</li>
<li>Phone: 111-1111-111</li>
<li>Address: 1st Street</li>
</ul>
<a href="https://www.facebook.com"><img src="image/fb.png"></a>
<a href="https://www.instagram.com"><img src="image/instagram.png"></a>
<a href="https://www.linkedin.com"><img src="image/linkedin.png"></a>
<a href="https://twitter.com"><img src="image/twitter.png"></a>
</div>
<div id="copyrite_container">
<p>Copyright © 2010-2018 Company Name. All rights reserved</p>
<p>Design and Code By: Ryan Belandres</p>
</div>
</div>
</div>
</body>
</html>