-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
129 lines (102 loc) · 4.46 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Fill Me In">
<meta name="author" content="John Doe">
<!-- This start file was build by Paul Cheney -->
<title>GitHub account for paulcheney</title>
<!-- TELLS PHONES NOT TO LIE ABOUT THEIR WIDTH & stops the font from enlarging when a phone is turned sideways-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="https://fonts.googleapis.com/css?family=BenchNine:300,700&display=swap" rel="stylesheet">
<!-- STYLE SHEETS -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!-- HEADER HERE -->
<div id="headerWrapper">
<header>
<h1>Dr. Paul Cheney</h1>
<h2>Spartan Design University</h2>
</header>
</div>
<!-- end wrapper -->
<!-- CONTENT HERE -->
<div id="mainWrapper">
<main>
<h1>Github Repositories</h1>
<div class="repos">
<div>
<h3>Creating Page Layouts with CSS</h3>
<p>Code referenced in my Pluralsight course "Creating Page Layouts with CSS".</p>
<a href="https://github.com/paulcheney/css-creating-page-layouts" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
</div><!-- end repo -->
<div>
<h3>Start File with 4 CSS Files</h3>
<p>This start file has an index.html, four linked css files with media queries and a linked empty JavaScript file.</p>
<a href="start.zip" target="_blank" class="link" rel="nofollow">Download</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v1</h3>
<p>Features very simple single level navigation using Flex Box.</p>
<p>SMALL - Stack the menu items</p>
<p>MEDIUM - Horizontal menu items (sized for mobile touch)</p>
<p>LARGE - Smaller for mouse access</p>
<a href="https://github.com/paulcheney/mobile-menu-v1" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
<a href="https://mobile-menu-v1.netlify.app/" target="_blank" class="link2">View on Netlify</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v2</h3>
<p>Features single level navigation with a hamburger icon for small screens.</p>
<p>SMALL - Stack the menu items</p>
<p>MEDIUM - Horizontal menu items (sized for mobile touch)</p>
<p>LARGE - Smaller for mouse access</p>
<a href="https://github.com/paulcheney/mobile-menu-v2" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
<a href="https://mobile-menu-v2.netlify.app/" target="_blank" class="link2">View on Netlify</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v3</h3>
<p>Features single level navigation with a hamburger icon for small screens.</p>
<p>SMALL - Skip navigation to page bottom</p>
<p>MEDIUM - Horizontal menu items (sized for mobile touch</p>
<p>LARGE - Smaller for mouse access</p>
<a href="https://github.com/paulcheney/mobile-menu-v3" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v4</h3>
<p>Features animated hamburger to X.</p>
<p>SMALL - Stacked menu items</p>
<p>MEDIUM - Horizontal menu items (sized for mobile touch)</p>
<p>LARGE - Smaller for mouse access</p>
<a href="https://github.com/paulcheney/mobile-menu-v4" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
<a href="https://mobile-menu-v4.netlify.app/" target="_blank" class="link2">View on Netlify</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v5</h3>
<p>Features two level deep navigation.</p>
<p>SMALL - Stacked menu items with down arrow for parent items</p>
<p>MEDIUM - Horizontal menu items (sized for mobile touch</p>
<p>LARGE - Smaller for mouse access</p>
<a href="https://github.com/paulcheney/mobile-menu-v5" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
</div><!-- end repo -->
<div>
<h3>Mobile Menu v6</h3>
<p>Features off canvas navigation with hamburger.</p>
<p>SMALL - Menu items are hidden off screen and slide on screen</p>
<p>MEDIUM - Same as small screens</p>
<p>LARGE - Horizontal nbavigation</p>
<a href="https://github.com/paulcheney/mobile-menu-v6" target="_blank" class="link" rel="nofollow">View the Respoitory</a>
</div><!-- end repo -->
</div><!-- end all repos -->
</main>
</div>
<!-- end wrapper -->
<!-- FOOTER HERE -->
<div id="footerWrapper">
<footer>
© 2020 • Paul Cheney • <a href="https://spartandesignuniversity.com/" target="_blank">Spartan Design University</a>
</footer>
</div>
<!-- end wrapper -->
</body>
</html>