-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (78 loc) · 2.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Basics of Responsive</title>
<link href="css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<section class="wrapper">
<header class="header">
<img src="img/atticlogo-A.jpg">
</header>
<section class="content">
<h1>IS&T Attic Responsive Examples</h1>
<section class="main_content">
<p>Mauris rhoncus nisl sagittis nunc feugiat posuere elementum neque lacinia. Morbi condimentum, ligula scelerisque molestie tincidunt.</p>
<ul>
<li>Web Design</li>
<li>Web Applications</li>
<li>Mobile Aps (iOS/Android)</li>
<li>Database Design</li>
</ul>
</section>
<h2>Weebsite Projects</h2>
<section class="thumbs">
<section class="thumb-row">
<article>
<h3>ARTsarben</h3>
<img src="img/artsarben.png">
</article>
<article>
<h3>MIS Tornado</h3>
<img src="img/mistornado.png">
</article>
</section>
<section class="thumb-row">
<article>
<h3>IS&T Site</h3>
<img src="img/isthomepage.png">
</article>
<article>
<h3>Green Omaha</h3>
<img src="img/goc.png">
</article>
</section>
<section class="thumb-row">
<article>
<h3>UNO Holiday Card</h3>
<img src="img/holidaycard.png">
</article>
<article>
<h3>LC gNET</h3>
<img src="img/lcgnet.png">
</article>
</section>
</section>
</section>
<footer>
<article>
<h3>Contact</h3>
<dl>
<dt>Zac Fowler</dt>
<dd><a href="mailto:zfowler@unomaha.edu">zfowler@unomaha.edu</a></dd>
<dt>Roni Myers</dt>
<dd><a href="mailto:vrush@unomaha.edu">vrush@unomaha.edu</a></dd>
</dl>
</article>
<article>
<h4>College of IS&T</h4>
<address>
1110 S. 67th Street<br>
Omaha, NE 68182<br>
</address>
</article>
</footer>
</section>
</body>
</html>