-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
118 lines (109 loc) · 4.96 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
<!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">
<title>The Rose Project</title>
<!--MY Stuff-->
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<!--Font family-->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600&display=swap" rel="stylesheet">
<!--More for bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<!--My Javascripts-->
<script src="scripts/script.js"></script>
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-brand text-white" href="#"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link text-white" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="user-registration.html">Register</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="user-login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="products.html">Products</a>
</li>
<li class="nav-item">
<a href="checkout.html" class="w3-bar-item w3-button"><i class="fa fa-shopping-cart" style="font-size:24px"></i></a>
</li>
</ul>
<form class="d-flex">
<!-- <input class="form-control me-2" type="search" placeholder="Search" aria-label="Search"> -->
<!-- <button class="btn btn-outline-success" type="submit">Login</button> -->
</form>
</div>
</div>
</nav>
</header>
<main class="scroll-container">
<section class="one" id="one">
<div class="hero">
<div class="hero-inner">
<h1 class="hero-heading">The Rose Project</h1>
<h2>Got a dollar?</h2>
<a href="products.html" class="btn">Click me</a>
</div>
<div class="hero-right"></div>
</div>
</section>
<section class="two" id="two">
<div class="stuff">
<div class="who-am-i">
<h1 class="heading intro">Hi there. I'm Rose.</h1>
<hr>
<p>
I've created The Rose Project to showcase<br>
How every rose has it's own different petals<br>
And by petals, I mean talents, skills, and Passions.<br>
Purchase my services. I'm begging you.
</p>
</div>
</div>
</section>
<section class="three" id="three">
<div class="stuff">
<div class="hm">
<h2>Passions & Skills</h2>
<hr>
<p>Multipassionate is a word I would describe myself.<br>
In a world full of specialists who hone on one skill,<br>
I find many subjects, topics, and fields of work interesting<br>
and want to exercise every possible skill out there.
</p>
<div id="list-three" class="list-three">
<ul class="override">
<li>Learning</li>
<li>Teaching</li>
<li>Singing</li>
<li>Drawing</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer>
<!--Enter footer stuff here-->
</footer>
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>