-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInternational Cryptographic Institute_Advancing Cryptography Education and Research.html
53 lines (53 loc) · 2.13 KB
/
International Cryptographic Institute_Advancing Cryptography Education and Research.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>International Cryptographic Institute</title>
<link rel="stylesheet" href="Styling the International Cryptographic Institute Website_CSS Code.css">
</head>
<body>
<header>
<h1>International Cryptographic Institute</h1>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About ICI</h2>
<p>The International Cryptographic Institute (ICI) is dedicated to the study and advancement of cryptography, providing insights and education on data security and encrypted communications.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<article>
<h3>Educational Programs</h3>
<p>ICI offers educational programs designed for high school science and math teachers to introduce cryptography concepts to their students.</p>
</article>
<article>
<h3>Research Publications</h3>
<p>Access our latest research publications on cryptography and data security.</p>
</article>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2024 International Cryptographic Institute. All rights reserved.</p>
</footer>
</body>
</html>