-
Notifications
You must be signed in to change notification settings - Fork 0
/
logoPage.html
102 lines (102 loc) · 3.63 KB
/
logoPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.min.css" />
<title>Logo Creator</title>
<link rel="shortcut icon" type="image/jpg" href="img/logo.png"/>
</head>
<body>
<main class="container-fluid">
<div class="row">
<div class="col-2 navBar">
<div class="row user">
<div class="col-12 d-flex justify-content-center">
<img
class="user__pic"
src="img/logo.png"
alt="Sample User"
/>
</div>
</div>
<div class="row nav">
<div class="col-12">
<a href="index.html"><h4 class="nav__link">Home</h4></a>
<a href="logoPage.html"
><h4 class="nav__link_active">Logo Creation</h4></a
>
<a href="namePage.html"
><h4 class="nav__link">Name Generator</h4></a
>
<a href="resourcesPage.html"
><h4 class="nav__link">Resources</h4></a
>
</div>
</div>
<div class="row navExtra">
<div class="col-12">
<a href=" mailto:virtual_venture_contact"
><h4 class="navExtra__link">Contact Us</h4></a
>
</div>
</div>
</div>
<!--Extra col-2 to push everything over after making nav sticky-->
<div class="col-2"></div>
<div class="col-10">
<div class="row">
<div class="col-12">
<div class="introMessage">
<h1 class="introMessage__title">Logo Creation</h1>
<p class="introMessage__message">
At VV, we leverage the latest and greatest solutions available
for our valued clients. Using our AI Integrated solution, you
can input in any idea you have for your logo, and our
program will show you completely AI generated options, without the hassle of hiring a designer.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="logoTextContainer">
<h1 class="logoTextContainer__text">Enter a Logo Idea</h1>
<input
type="text"
class="logoTextContainer__input"
placeholder="Enter Your Ideas"
aria-label="input"
required=""
id="logoInput"
value=""
autocomplete=""
/>
<img
class="logoTextContainer__glass"
src="img/eyeglass.svg"
alt="Eyeglass"
/>
</div>
</div>
<div class="col-6">
<img
src="img/placeholderImg.svg"
alt="Placeholder Image"
class="logoTextContainer__img"
/>
</div>
</div>
<h2>This page is WIP, we have not had a chance to finish developing this! Check back soon to get access to this amazing feature!</h2>
</div>
</div>
</main>
</body>
</html>