-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<head>
<title>My Webpage</title>
</head>
<body>
<div id="header">
<img src="assets/logo.svg" alt="logo">
<div id="links">
<a href="" >Home</a>
<a href="https://en.wikipedia.org/wiki/Reproductive_system_of_gastropods">Wiki</a>
<a href="https://www.github.com">Github</a>
<a href="https://www.linkedin.com">Linkedin</a>
</div>
</div>
<div id="content">
<div id="job">
<h1>Márton Á. Karczub</h1>
<h2>Software developer recruit</h2>
<div id="introduction">
<p class="baseText">I'm intrested in solving challanging problems, even though if that takes a lot of time. I enjoy myself during proccess, and also after a job well done.
</p>
<p class="baseText">I every day take out the trash, wash the dishes, do other housworks and soon homework too, doesn't matter how unpleasent they are. So I'm kind of an everyday hero!</p>
</div>
</div>
<div id="techs">
<div id="techTitle">
<p>- - -</p>
<h1>Technology Wiki</h1>
</div>
<dl>
<dt>ALU</dt>
<dd class="baseText">It is an idealized or physical device implementing a Boolean function; that is, it performs a logical operation on one or more binary inputs and produces a single binary output.</dd>
<dt>ASCII</dt>
<dd class="baseText">It stands for American Standard Code for Information Interchange. Computers can only understand numbers, so it is the numerical representation of a character such as 'a' or '@' or an action of some sort.</dd>
<dt>RAM</dt>
<dd class="baseText">It is a form of computer data storage which stores frequently used program instructions to increase the general speed of a system. It can be randomly accessed. Data items to be read or written in almost the same amount of time irrespective of the physical location of data inside the memory.</dd>
<dt>Programing language</dt>
<dd class="baseText">A formal language that specifies a set of instructions that can be used to produce various kinds of output. They generally consist of instructions for a computer and can be used to create programs that implement specific algorithms.</dd>
<dt>DNS</dt>
<dd class="baseText">A hierarchical decentralized naming system for computers, services, or other resources connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities.</dd>
<dt>HTTP</dt>
<dd class="baseText">An application protocol for distributed, collaborative, and hypermedia information systems. It is the foundation of data communication for the World Wide Web. It is the standard protocol to exchange or transfer hypertext.</dd>
</dl>
</div>
</div>
</body>
</html>