forked from ktranfaglia1/Celite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
84 lines (84 loc) · 4.95 KB
/
about.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!--
File: about.html
Author: Kyle Tranfaglia
Purpose: HTML structure for the About page to describe the purpose of the website and credit the creators
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> Collaborators - 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/about.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>
<h1> Meet The Team! </h1> <hr>
</header>
<!-- Text to thank users -->
<div class="text_container">
<div class="p2">
Thank you for using our cellular automata simulators. The Parallel and Sequential Wolfram's Nearest Neighbor and Conway's Game of Life simulator serve to provide a compehensive outlet for advanced pattern recognition and discrete mathematical analysis. We hope that our web-application will provide an accessible way to explore discrete mathematical systems by enabling the construction of complex modeling systems, allowing the recogniton of emergent behaviors, and providing insight into self-organization and pattern formation. Overall, our program was designed to be an versatile educational toolset to explore the intricacies of simple rules within cellular automata and assist in the study and exploration of various phenomena in discrete mathematics and related fields.
</div>
</div>
<hr class="line">
<div class="p2">
This project was supported and directed by Dr. Michael Bardzell and is in affiliation with Salisbury University.
</div>
<!-- Creator roles, pictures, and socials -->
<div class="team_container">
<img src="images/Kyle.jpg" class="profile">
<div class="team_text">
<h3> Kyle Tranfaglia </h3>
<p> Team Leader </p>
<p> Full-stack Developer </p>
<div class="social_icons">
<a href="https://github.com/ktranfaglia1" target="_blank"> <img src="images/Github.png" alt="GitHub" class="github"></a>
<a href="https://www.linkedin.com/in/kyle-tranfaglia-6564b42a4/" target="_blank"> <img src="images/Linkedin.png" alt="LinkedIn" class="linkedin"> </a>
</div>
</div>
<img src="images/Timmy.jpg" class="profile">
<div class="team_text">
<h3> Timothy McKirgan </h3>
<p> Back-end Developer </p>
<div class="social_icons">
<a href="https://github.com/TimothyJMcKirgan" target="_blank"> <img src="images/Github.png" alt="GitHub" class="github"></a>
<a href="https://www.linkedin.com/in/timothy-mckirgan/" target="_blank"> <img src="images\Linkedin.png" alt="LinkedIn" class="linkedin"> </a>
</div>
</div>
<img src="images/Dustin.jpg" class="profile">
<div class="team_text">
<h3> Dustin O'Brien </h3>
<p> Back-end Developer </p>
<div class="social_icons">
<a href="https://github.com/Omniladder" target="_blank"> <img src="images/Github.png" alt="GitHub" class="github"></a>
<a href="https://www.linkedin.com/in/dustin-o-brien-7174a4267/" target="_blank"> <img src="images/Linkedin.png" alt="LinkedIn" class="linkedin"> </a>
</div>
</div>
</div>
</body>
</html>