-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganization.html
133 lines (114 loc) · 4.06 KB
/
organization.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<style>
body {
background-color: #f8f8f8; /* Slightly off-white background */
font-family: 'Garamond', serif;
}
.header {
text-align: center;
margin: 10px;
}
.image-container {
width: 100%;
height: 600px; /* Adjust as needed */
background: url('https://github.com/CarterBeauBenson/LLMO-FOIS/blob/main/images/1.png?raw=true') no-repeat center center;
background-size: cover;
}
.navbar {
text-align: center;
background-color: #006884; /* Pleasant green color */
}
.navbar a {
margin: 0 15px;
text-decoration: none;
color: #fff;
font-size: 24px; /* Larger font size */
}
p, ul {
font-size: 18px; /* Increased font size */
padding: 0 100px; /* Consistent padding */
}
h1, h2, h3 {
text-align: center; /* Center align headers */
}
ul {
list-style-type: square; /* Square bullet points */
}
/* Styles for organizers */
p, ul {
font-size: 18px; /* Increased font size */
padding: 0 150px; /* Consistent padding */
text-align: left; /* Align paragraph text to the left */
}
h1, h2 {
text-align: center; /* Center align h1 and h2 headers */
}
/* Styles for organizers */
.organizer {
display: flex;
flex-direction: column; /* Stack items vertically */
align-items: center; /* Center items horizontally */
padding: 10px 150px; /* Adjust padding as needed */
font-size: 18px;
}
.organizer img {
border-radius: 50%; /* Makes the image round */
width: 200px; /* Adjust size as needed */
height: 200px; /* Adjust size as needed */
margin-bottom: 10px; /* Space between image and text */
object-fit: cover; /* Ensures the image covers the area without distortion */
}
.organizer-info {
text-align: center; /* Center align text */
}
.organizer-info h3 {
margin-bottom: 5px; /* Space between heading and paragraph */
}
</style>
</head>
<body>
<body>
<div class="image-container"></div> <!-- Image container -->
<div class="navbar">
<a href="index.html">Call for Papers</a>
<a href="organization.html">Organization</a>
<a href="program.html">Program</a>
</div>
<div class="organizer">
<img src="https://github.com/CarterBeauBenson/LLMO-FOIS/blob/main/images/John%20Headshot.png?raw=true" alt="John Beverley">
<div class="organizer-info">
<h3>John Beverley</h3>
<h3>University at Buffalo</h3>
<p>
John is an Assistant Professor at the University of Buffalo and Co-Director of the National Center for Ontological Research. His work focuses on applying knowledge representation in semantic interoperability and updating critical health ontologies like the Infectious Disease Ontology. His research extends to natural language semantics and addressing healthcare epistemics.
</p>
</div>
</div>
<div class="organizer">
<img src="https://github.com/CarterBeauBenson/LLMO-FOIS/blob/main/images/Mark-Jensen-7.png?raw=true" alt="Mark Jensen">
<div class="organizer-info">
<h3>Mark Jensen</h3>
<h3>Calspan University at Buffalo Research Center</h3>
<p>
Mark is an ontologist at CUBRC and developer of the Common Core Ontologies.
</p>
</div>
</div>
<div class="organizer">
<img src="https://github.com/CarterBeauBenson/LLMO-FOIS/blob/main/images/Dan%20Maxwell%20Headshot.jpg?raw=true" alt="Dan Maxwell">
<div class="organizer-info">
<h3>Dan Maxwell</h3>
<h3>KadSci</h3>
<p>
Dr. Daniel Maxwell is the president of KaDSci, LLC and co-founder of EXOGENiUS, with a focus on military operations research and simulation. He teaches at George Mason University and leads the Modeling and Simulation Working Group at the US Geospatial Intelligence Foundation.
</p>
</div>
</div>
<div class="organizer">
<img src="https://github.com/CarterBeauBenson/LLMO-FOIS/blob/main/images/Hedi-Karray.png?raw=true" alt="Hedi Karray">
<div class="organizer-info">
<h3>Hedi Karray</h3>
<h3>Ecole Nationale d'Ingénieurs de Tarbes</h3>
</div>
</div>
</body>
</html>