-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (88 loc) · 3.98 KB
/
index.html
File metadata and controls
92 lines (88 loc) · 3.98 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Home - Quick card maker</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<header class="masthead text-center text-white">
<div class="masthead-content">
<div class="container">
<h1 class="masthead-heading mb-0">Quick card maker</h1>
<h2 class="masthead-subheading mb-0"></h2>
</div>
</div>
<div class="bg-circle-1 bg-circle"></div>
<div class="bg-circle-2 bg-circle"></div>
<div class="bg-circle-3 bg-circle"></div>
<div class="bg-circle-4 bg-circle"></div>
</header>
<div>
<div class="container">
<div class="row">
<div class="col">
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4">Quickly make custom cards for any purpose</h2>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="col">
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-2">
<div class="p-5"></div>
</div>
<div class="col">
<form>
<div class="p-5"></div>
<p>What do you want the card to say?</p>
<input class="form-control" type="text" id="cardText">
<p>What is the URL of the background image?</p>
<input class="form-control" type="text" id="cardBackgroundImage">
<p>Who is the card from?</p>
<input class="form-control" type="text" id="cardFromText">
<button class="btn btn-primary" type="button" id="submit">Submit</button>
</form>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div>
<div class="container">
<div class="row">
<div id = "cardImage" class="col-md-12 card bodyOfCard" style="background-image: url('https://assets.entrepreneur.com/content/3x2/1300/20150923181055-happy-birthday-celebrate-cupcake.jpeg');">
<h1 id="mainMessage">[Message of your card]</h1>
<h1 class="from" id="cardSender">From, [Your name here]</h1>
</div>
</div>
</div>
</div>
<div class="p-5"></div>
<footer class="py-5 bg-black">
<div class="container">
<p class="text-center text-white m-0 small">Copyright © Max Norman 2021</p>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</script>
</body>
</html>