-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MyFirstWebsite</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar">
<img src="./assets/logo.svg" class="logo">
<ul class="nav-li">
<li><a class="nav-it" href="index.html">HOME</a></li>
<li><a class="nav-it" href="https://www.wikipedia.org">WIKI</a></li>
<li><a class="nav-it" href="https://github.com">GITHUB</a></li>
<li><a class="nav-it" href="https://www.linkedin.com/">LINKEDIN</a></li>
</ul>
</nav>
</header>
<article>
<h1>Ilayda Sila</h1>
<div class="subtitle">
<h3>Fullstack software developer</h3>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque, illo eveniet. Eum consectetur quos saepe consequuntur, obcaecati quam placeat iure!</p>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sit commodi est nulla at neque? Minima.</p>
</article>
<div class="divider">- - -</div>
<Footer>
<h2>Technology Wiki</h2>
<dl>
<dt>Logic Gate</dt>
<dd>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>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>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>Programming Language</dt>
<dd>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>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>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>
</Footer>
</body>
</html>