-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
61 lines (58 loc) · 2.44 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<title>Dan's Portfolio</title>
</head>
<body>
<div class="header">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<span style="float:left;">
<i>Portfolio</i>
</span>
</div>
<div class="container">
<div class="main">
<div class="borderabout">
<p><img src="./images/download.jpeg" alt="A photo of Dan" height=150px width=150px></p>
<div align="center" style="margin-top: 10px;">
<h2>
Personal info
</h2>
</div>
<div align="left">
<p style="margin-top: 20px;">
My name is Dancun Manyinsa. I consider all programming languages as being powerful depending on how skillful a programmer is and whether it is the best tool for the task at hand. Nonetheless, I believe <strong>Python and Rust are a beast</strong>.
Reason being is that both are robust, flexible, scalable and guarantee safety. They are my best tools in my arsenal.
</p>
</div>
<div align="left">
<p style="margin-top: 20px;">
Understanding the fundamentals of programming is very important for anyone to rise from an amateur programmer to an expert in their respective fields. I choose to use the skills I learn in coming up with creative ideas in improving the fields of AI and
Cybersecurity. My hobbies include:
<div align="center" style="margin-top: 30px;">
<span>
<ol>
<li>Being a problem solver.</li>
<li style="float:left;">Exploration.</li>
</ol>
</span>
</div>
</p>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="wrapper">
<p style="margin-top: 20px;"> Mathematician and Scientist</p>
<p>Copyright 2018. Dan's Portfolio. All Rights Reserved.</p>
</div>
</div>
</body>
</html>