-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech.html
More file actions
76 lines (76 loc) · 4.19 KB
/
tech.html
File metadata and controls
76 lines (76 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link href="css/styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<title>Technology</title>
</head>
<body class="tech-bg alt-body">
<div class="grid-container-alt">
<header class="alt-header">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#">
<img class="logo" alt="logo" src="img/tech/lion.png">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon open-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item tech-border">
<a class="nav-link tech-color" href="index.html">home</a>
</li>
<li class="nav-item tech-border active">
<a class="nav-link tech-color" href="tech.html">tech</a>
</li>
<li class="nav-item tech-border">
<a class="nav-link tech-color" href="econ.html">econ</a>
</li>
<li class="nav-item tech-border">
<a class="nav-link tech-color" href="neuropsy.html">neuropsy</a>
</li>
<li class="nav-item tech-border">
<a class="nav-link tech-color" href="intrel.html">intrel</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="alt-main">
<div class="heading-div">
<h1 class="heading heading-size-alt">TECHNOLOGY</h1>
<img class="small-graphic" src="img/tech/sgraphic.svg" alt="people working on computer">
</div>
<div class="text-div">
<img class="large-graphic" src="img/tech/graphic.svg" alt="collage of technologies">
<p class="description">The use of scientific knowledge to solve practical problems in industry and commerce.</p>
</div>
</main>
<div class="alt-section">
<article class="subtopic">
<div class="subtopic-card tech-card">
<p class="subtopic-description">On Blockchain this refers to the transfer of control and decision-making from a centralized entity (individual, organization, or group thereof) to a distributed network.</p>
<h2 class="subtopic-heading">DECENTRALIZATION</h2>
<img class="subtopic-icon" src="img/tech/decentralized-icon.png" alt="decentralized nodes icon">
</div>
</article>
<article class="subtopic">
<div class="subtopic-card tech-card">
<p class="subtopic-description">Systems endowed with the intellectual processes characteristic of humans; the ability to reason, discover meaning, generalize, or learn from past experience.</p>
<h2 class="subtopic-heading">ARTIFICIAL INTELLIGENCE</h2>
<img class="subtopic-icon" src="img/tech/ai-icon.png" alt="brain with gear icon">
</div>
</article>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>