-
Notifications
You must be signed in to change notification settings - Fork 6
/
welcome.html
95 lines (91 loc) · 3.1 KB
/
welcome.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
<!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 rel="stylesheet" href="css/welcome.css">
<link rel="stylesheet" href="css/style.css">
<title>Welcome page</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<span class="proj">Project<br /><span class="gen">cc_gen</span></span>
</a>
</div>
<div class="hmbg"><img src="img/menu.svg" alt="menu" id="hmbg"/></div>
<ul class="menu-list">
<li><a href="index.html">Home</a></li>
<li><a href="library.html">Library</a></li>
<li><a href="document.html">Docs</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="login.html">Login</a></li>
<li id="bg-li"><a href="signup.html">Get started for FREE</a></li>
</ul>
</nav>
</header>
<main>
<section class="middle">
<h3 class="wel-come">Welcome!</h3>
<p class="lo-gin">Log in/Sign up to view to view </p>
<p class="gene-rate"> and generate credit cards</p>
<img src="img/pics.svg" alt="menu">
<div class="btn-group">
<button id="btn1"> <a href="login.html" >Go to sign in </a></button>
<button id="btn2"> <a href="signup.html">No account yet?Sign up</a></button>
<button id="btn3"> <a href="library.html">View cc cards</a> </button>
</div>
</div>
</section>
<footer>
<div class="top-footer">
<article id="sect-five">
<div class="sf-about">
<h2>Project cc_gen</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Tincidunt
duis facilisis co nvallis magna elementum nibh. Eu mi mi eu neque
tortor fermentum. Aliquam ac nibh cons
</p>
</div>
<div>
<a href=""
><img src="img/tweet.svg" alt="socials" class="icon"
/></a>
<a href=""><img src="img/fb.svg" alt="socials" class="icon" /></a>
<a href=""
><img src="img/insta.svg" alt="socials" class="icon"
/></a>
</div>
</article>
<article id="sect-six">
<div>
<h3>Links</h3>
<ul class="foot-list">
<li><a href="">Designs</a></li>
<li><a href="document.html">Docs</a></li>
<li><a href="contact.html">Support</a></li>
<li><a href="signup.html">Get Started</a></li>
</ul>
</div>
<div>
<h3>Others</h3>
<ul class="foot-list">
<li><a href="about.html">About Us</a></li>
<li><a href="">Terms & Conditions</a></li>
</ul>
</div>
</article>
</div>
<div>
<span class="footer-CR">©2022 Project cc_gen. All rights reserved</span>
</div>
</footer>
<script src="script/main.js"></script>
</body>
</html>
</body>
</html>