-
Notifications
You must be signed in to change notification settings - Fork 0
/
projecttwo.html
165 lines (138 loc) · 5.47 KB
/
projecttwo.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Brian's Portfolio: Password Generator</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="./styles/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<!-- <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/> -->
</head>
<body>
<nav class="red accent-2" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="./index.html" class="brand-logo">Brian Robinson</a>
<ul class="right hide-on-med-and-down">
<li><a href="./index.html">Home</a></li>
<li><a href="#project">Project Details</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="./index.html">Home</a></li>
<li><a href="#project">Project Details</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a>
</div>
</nav>
<div id="index-banner" class="parallax-container">
<div class="section no-pad-bot">
<div class="container">
<br><br>
<h1 class="header center black-text text-lighten-5"></h1>
<div class="row center">
<h5 class="header col s12 light">Random Password Generator</h5>
</div>
<div class="row center">
</div>
<br><br>
</div>
</div>
<div class="parallax"><img src="./images/parralax1.png" alt="Unsplashed background img 1"></div>
</div>
<div class="row">
<div class="col s12 center">
<h3><i class="mdi-content-send brown-text"></i></h3>
<h4 id="project">Details</h4>
<p class="center-align light">Password Generator is an application that enables the user to obtain greater password security by generating a password based on criteria that they’ve selected. The password must be between 8 and 128 characters, with the option to include numbers,
letters (uppercase & lowercase), and special characters. This application runs in the browser and features dynamically updated HTML and CSS powered by JavaScript code. It has a clean and polished, responsive user interface that adapts to multiple screen sizes.</p>
</div>
</div>
<div class="row">
<div class="col s12 center">
<h3><i class="mdi-content-send brown-text"></i></h3>
<h4 id="about">Technologies Used</h4>
</div>
</div>
<div class="row">
<div class="col s1">
<img class="circle responsive-img" src="./images/logos/html5.png">
</div>
<div class="col s1">
<img class="circle responsive-img" src="./images/logos/css3.png">
</div>
<div class="col s1">
<img class="circle responsive-img" src="./images/logos/JS.png">
</div>
</div>
<!--Project Details Section-->
<div class="row">
<div class="col s12 center">
<h3><i class="mdi-content-send brown-text"></i></h3>
<h4 id="about">Application Usage</h4>
</div>
</div>
<div class="row">
<div class="col s12 m7 center">
<div class="card">
<div class="card-image">
<img src="./images/passwordgen/Screenshot-Password-Gen.png">
<span class="card-title"></span>
</div>
<div class="card-content">
<p> The above is a screenshot of a randomly generated password with 15 characters that includes numbers and special characters.</p>
</div>
<div class="card-action">
<a href="https://github.com/brob92993/Week3-PasswordGen.git">Check it out in Github</a>
<a href="https://brob92993.github.io/Week3-PasswordGen/">Check out the live application</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="parallax-container valign-wrapper">
<div class="section no-pad-bot">
<div class="container">
<div class="row center">
<h3 id="contact" class="header col s12 light">Contact</h3>
</div>
</div>
</div>
<div class="parallax"><img src="./images/parralax1.png" alt="Unsplashed background img 2"></div>
</div>
<footer class="page-footer white">
<div class="container center">
<div class=" wrap col l3 s12">
<h5 class="black-text"></h5>
<ul>
<li><a class="button white black-text waves-effect waves-light btn-small" href="tel:+19196087679">Phone: 919.608.7679</a></li>
<div>
-
</div>
<li><a class=" button white waves-effect waves-light btn-small black-text" href="mailto:[email protected]">Email</a></li>
<div>
-
</div>
<li><a class="button white waves-effect waves-light btn black-text" href= "https://github.com/brob92993">Github Repository</a></li>
<div>
-
</div>
<li><a class="button white waves-effect waves-light btn black-text" href="https://linkedin.com/in/brob92993">LinkdIn Profile</a></li>
<div>
-
</div>
<li><a class="button white waves-effect waves-light btn black-text" href ="assets/Brian2021Resume.pdf">My Resume</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="./js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>