-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolio_Index.html
161 lines (118 loc) · 5.04 KB
/
Portfolio_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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jonathan_Portfolio_Index</title>
<link rel="stylesheet" href="Portfolio_Index.css">
</head>
<body>
<div class="page_margin">
<!-- HEADER -->
<header id="header">
<nav id="navigation">
<div class="logo">
<img src="Images/Combined_Shape_Header.png" alt="">
</div>
<div class="navigation_links">
<a href="./Jonathan_Portfolio.html">HOME</a>
<a href="./Portfolio_Index.html">PORTFOLIO</a>
<a href="./Portfolio_Contact_Me.html">CONTACT ME</a>
</div>
</nav>
</header>
<section class="manage_tab">
<div class="manage_img">
<img src="Images/Manage.svg" alt="">
</div>
<div class="manage_text">
<h2>Manage</h2>
<p>This project required me to build a fully responsive landing page to the designs provided. I used
HTML5,
along with CSS Grid and JavaScript for the areas that required interactivity, such as the
testimonial
slider.
</p>
<div>
<a href="./Portfolio_Manage.html"><button>VIEW PROJECT</button></a>
</div>
</div>
</section>
<section class="bookmark_tab">
<div class="bookmark_text">
<h2>Bookmark</h2>
<p>This project required me to build a fully responsive landing page to the designs provided. I used
HTML5,
along with CSS Grid and JavaScript for the areas that required interactivity, such as the features
section.</p>
<div>
<a href="./Portfolio_Bookmark.html"><button>VIEW PROJECT</button></a>
</div>
</div>
<div class="bookmark_img">
<img src="/Images/Bookmark.svg" alt="">
</div>
</section>
<section class="insure_tab">
<div class="insure_img">
<img src="/Images/Insure.svg" alt="">
</div>
<div class="insure_text">
<h2>Insure</h2>
<p>This was a small project which mostly consisted of HTML and CSS. I built a fully-responsive landing
page.
The only JavaScript this project required was to enable the toggling of the mobile navigation.</p>
<div>
<a href="./Portfolio_Insure.html"><button>VIEW PROJECT</button></a>
</div>
</div>
</section>
<section class="fylo_tab">
<div class="fylo_text">
<h2>Fylo</h2>
<p>This project was built in pure HTML and CSS. I had mobile and desktop designs to work to and built it
so
that it was fully-responsive. I took a mobile-first approach and used modern CSS like Flexbox and
Grid
for layout purposes.</p>
<div>
<a href="./Portfolio_Fylo.html"><button>VIEW PROJECT</button></a>
</div>
</div>
<div class="fylo_img">
<img src="/Images/Fylo.svg" alt="">
</div>
</section>
</div>
<!-- CONTACT ME -->
<section id="contact_me">
<div class="contactme_text">
<h2>Interested in doing a project together?</h2>
</div>
<div class="line">
</div>
<div class="contact_button">
<a href="./Portfolio_Contact_Me"><button>CONTACT ME</button></a>
</div>
</section>
<!-- FOOTER -->
<section id=" footer">
<nav id="footer_navigation">
<div id="footer-menu">
<div class="footer_navigation_links">
<img src="Images/Combined_Shape_Footer.png" alt="">
<a href="./Jonathan_Portfolio.html">HOME</a>
<a href="./Portfolio_Index.css">PORTFOLIO</a>
<a href="./Portfolio_Contact_Me.html">CONTACT ME</a>
</div>
</div>
<div id="socials">
<a href="https://twitter.com/JagunKolawole"><img src="./Images/twitter_logo.svg" alt=""></a>
<a href="https://www.linkedin.com/in/jonathan-kolawole-1a4074142/"><img src="./Images/linkedin_logo.svg"
alt=""></a>
<a href="https://github.com/Jagunmolu"><img src="./Images/github_logo.svg" alt=""></a>
</div>
</nav>
</section>
</body>
</html>