-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
110 lines (92 loc) · 3.61 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Karla:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<title>Digital Product Design</title>
<meta name="viewport" content="width=device-width">
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<meta name="robots" content="noindex, nofollow" />
<!-- Favicon -->
<link rel="icon"
type="image/png"
href="imgs/favicon.png" />
<!-- Share Image -->
<meta property="og:image" content="imgs/share.png" />
<meta name="twitter:card" content="photo" />
<meta name="twitter:site" content="@umichDesign" />
<meta name="twitter:title" content="Digital Product Design" />
<meta name="twitter:image" content="imgs/share.png" />
<meta name="twitter:url" content="http://umichdesign.com/" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<header class="text-center hide-mobile text-white">
<div class="container">
<div class="inline-block">
<div class="u-of-m"><img src="imgs/u-of-m.png"></div>
</div>
</div>
<div class="content">
<h5>ENTR 390.012 • FALL 2016</h5>
<h1 class="text-white">Digital Product Design</h1>
<h3 class="text-white">Mondays, 4-5pm <br /> 170 Weiser Hall</h3>
</div>
</header>
<nav class="nav">
<div class="container">
<div class="float-left">
<img src="imgs/UMPDlogo.png" height="30" style="margin-top: 20px;">
</div>
<div class="float-right">
<img style="padding-top: 24px; margin-right: 6px;" data-action="show-mobile-nav" class="show-mobile" width="30px" src="imgs/hamburger.png">
<img style="padding-top: 24px; margin-right: 6px; display: none" data-action="close-mobile-nav" width="21px" src="imgs/close-menu.png">
<ul class="nav-list hide-mobile">
<li class="active"><a href="/">Lectures</a></li>
<li><a href="/about.html">About</a></li>
<!-- <li><a href="/resources.html">Resources</a></li> -->
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
</div>
<ul class="nav-mobile" style="display: none;">
<li><a href="/">Lectures</a></li>
<li><a href="/about.html">About</a></li>
<!-- <li><a href="/resources.html">Resources</a></li> -->
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
<section class="main">
<div class="container">
<div class="mar-b-36">
<h2>Contact</h2>
<p>This interdisciplinary course is an introduction to the fundamentals of designing products for digital platforms, taught by actual designers at a startup.</p>
<a href="mailto:[email protected]" target="_blank">
<img src="imgs/[email protected]" width="16px" style="margin-right: 6px;">
Email
</a>
<h3>Office Hours</h3>
<p>Friendly time to ask questions or chat with the instructors.</p>
<a href="https://docs.google.com/a/umich.edu/spreadsheets/d/1vliYjglocDlmE61_HLpBilmlt2mCs8d2WGEgMq66h8c/edit?usp=sharing" target="_blank">
Check out office hours
<img src="imgs/[email protected]" width="10px">
</a>
</div>
</div>
</section>
<script type="text/javascript">
$(document).ready(function() {
$(document).on('click', '[data-action="show-mobile-nav"]', function (e) {
$(e.target).hide();
$('[data-action="close-mobile-nav"]').show();
$('.nav-mobile').slideDown('fast');
});
$(document).on('click', '[data-action="close-mobile-nav"]', function (e) {
$(e.target).hide();
$('[data-action="show-mobile-nav"]').show();
$('.nav-mobile').slideUp('fast');
});
});
</script>
</body>
</html>