-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (103 loc) · 4.89 KB
/
Copy pathindex.html
File metadata and controls
111 lines (103 loc) · 4.89 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<!--
Hi professor
I have finished today’s assignment.
It took me around 4 hours to finish the assignment.
Here is the link https://solmn.github.io/jspractice.html
I have practiced how to use esLint coding convention and testing with mocha. And practiced writing pure and non pure functions in javascript and ecursive function in javascript. The array to list function that i created is similar to how Linked List data structure logic. And I have used some of the concepts to relate with it and do the algorithm.
Challenge: The reverse array in place was very tricky because i had to reverse the array without creating a new array. But in the end I did it. And i only used one loop which is efficient.
-->
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/new.css" />
</head>
<body>
<button id="github"><a href="https://github.com/solmn" style="color: black; text-decoration: none">Github <i class="fa fa-github"></i></a></button>
<button id="stack" >Stack <a href="https://stackoverflow.com/users/6468292/solomon" style="color: black; text-decoration: none"><i style="color:red" class="fa fa-stack-overflow"></i></a></button>
<div class="container">
<img id="background" src="images/o.jpg" alt="Notebook" >
<div class="content">
<img class="profile" src="images/sol.JPG" width="140" height="140" alt="solomon mehari" />
<div id="c">
<h2>Solomon Mehari</h2>
<h4>Maharshi International University</h4>
<h4>610700</h4>
<p>My name is solomon, I am from Ethiopia. I have Bsc Degree in Software Engineering.
I have 2 years of experiance in machine learning and artificial intelligence.
currently I am studying my masters degree in computer science at Maharshi International University </p>
</div>
</div>
</div>
<div class="main">
<h2>PORTFOLIO(WAP)</h2>
<hr>
<div class="column">
<div class="cont">
<h3>HTML</h3>
<div class="sidenav">
<a href="index.html">W1D1 - Homepage</a>
<a href="aboutme.html">W1D2 - About Me</a>
<a href="pie.html">W1D3 - Recipe</a>
</div>
</div>
</div>
<div class="column" style="margin-left: 10px">
<div class="cont">
<h3>CSS</h3>
<div class="sidenav">
<a href="tmnt.html">W1D4 - Movie Review</a>
<a href="responsive.html">W1D5 - Responsive</a>
<a href="task.html">W1D5 - Tasks</a>
</div>
</div>
</div>
<div class="column" style="margin-left: 10px">
<div class="cont">
<h3>JavaScript</h3>
<div class="sidenav">
<a href="basicjs.html">W1D5 - Basic javascript</a>
<a href="re_implement_basic.html">W1D6 - Re-implement</a>
<a href="decoratormytext.html">W1D6 - Decorator</a>
</div>
</div>
</div>
<div class="column" style="margin-left: 10px">
<div class="cont">
<h3>JavaScript(2)</h3>
<div class="sidenav">
<a href="ascii.html">W2D1 ASCII Animation </a>
<a href="mochaw1d5functions.html">W1D5 - Mocha test</a>
<a href="myFunctionalApi.html">W2D1 - My functional api</a>
</div>
</div>
</div>
<div class="column" style="margin-left: 10px">
<div class="cont">
<h3>JavaScript(3)</h3>
<div class="sidenav">
<a href="jspractice.html">W2D2 JS Practice </a>
<a href="prototype_inheritance.html">W2D6 Inheritance </a>
<a href="account.html">W3D4 Classes </a>
</div>
</div>
</div>
<div class="column" style="margin-left: 10px">
<div class="cont">
<h3>JavaScript(4)</h3>
<div class="sidenav">
<a href="Maze!.htm"> W3D2 Maze </a>
<a href="circle.html"> W3D3 Clean Screen </a>
<a href="posts.html"> W4D1 Ajax lab </a>
</div>
</div>
</div>
</div>
<!-- <div class="footer">
<a href="https://validator.w3.org/check/referer">
<img src="http://mumstudents.org/cs472/2013-09/images/w3c-html.png" alt="Validate" />
</a>
</div> -->
</body>
</html>