forked from ktranfaglia1/Celite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 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
55
56
57
58
59
60
61
<!--
File: index.html
Author: Kyle Tranfaglia
Purpose: HTML structure for home page
Last Updated: 11/13/24
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"> <!-- Set the character encoding to UTF-8 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Define the viewport for responsive design -->
<title> Home - Celite </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <!-- Link to online library for icons -->
<link rel="stylesheet" type="text/css" href="styles/global.css"> <!-- Link to global CSS styles -->
<link rel="stylesheet" type="text/css" href="styles/home.css"> <!-- Link to home specific CSS styles -->
<link rel="icon" href="images/Cellular_automata_icon.png"> <!-- Link page icon -->
</head>
<body>
<!-- Navigation Bar-->
<header>
<div class="navbar">
<a href="index.html" class="logo">
<img src="images/Cellular_automata_logo.png" alt="Logo" width="70" height="70">
</a>
<a href="index.html"> Home </a> <!-- Link to the home page -->
<!-- Dropdown menu for simulators -->
<div class="dropdown">
<button class="drop_button"> Simulators <i class="fa fa-caret-down"> </i> </button>
<!-- Dropdown items -->
<div class="dropdown_item">
<a href="wolframPR.html"> Parallel WNN </a> <!-- Link to Wolfram's Nearest Neighbor Parallel Simulation Page -->
<a href="wolframSQ.html"> Sequential WNN </a> <!-- Link to Wolfram's Nearest Neighbor Sequential Simulation Page -->
<a href="conway.html"> Game of Life </a> <!-- Link to Conway's Game of Life Simulation Page -->
</div>
</div>
<a href="documentation.html"> Documentation </a> <!-- Link to the documentation page -->
<a href="about.html"> Collaborators </a> <!-- Link to the about page -->
<a href="https://github.com/ktranfaglia1/Celite" target="_blank"> Source </a> <!-- Link to the source code page -->
</div>
</header>
<!-- Central image for homepage to showcase simulated products -->
<div class="image_container">
<img src="images/Simulated_quadrant.png" alt="Logo" width="325" height="325">
</div>
<h5> Celite </h5>
<div class="subtitle">
A Collection of Cellular Automaton Simulators
</div>
<div class="p2">
Generate Diverse and Complex Discrete Mathematical Models using Simple Cellular Automata Rules
</div>
<hr>
<!-- Large buttons that direct to simulators -->
<div class="input_container2">
<a> </a>
<a href="wolframPR.html" class="navigate_button1 navigate_button"> Parallel Wolfram's <br> Nearest Neighbor </a>
<a href="wolframSQ.html" class="navigate_button2 navigate_button"> Sequential Wolfram's <br> Nearest Neighbor </a>
<a href="conway.html" class="navigate_button3 navigate_button"> Conway's Game <br> of Life</a>
</div>
</body>
</html>