-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (66 loc) · 3.3 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
<html>
<head>
<meta charset="UTF-8">
<title>RoboBusiness - Businesscards for Robots!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page">
<a name="home"></a>
<div class="hero">
<div class="navbar">
<div class="div_logo">
<img class="logo" src="./images/pngegg.png"></img>
<p class="logotext">RoboBusiness</p>
</div>
<div class="div_menu">
<a href="#home" class="menuLinks">Home</a>
<a href="#businesscard" class="menuLinks">Businesscard</a>
<a href="http://github.com/robhagen" class="menuLinks">Github</a>
</div>
</div>
<div class="div_intro">
<div class="introtext">
<p1 class="intro_text_head">Let's face it...</p1>
<p class="intro_text_body_upper">Automation is slowly taking over the world.
It won't be long now before robots take power and replace us with robotic counterparts of ourselves.
Best get it over with now.
</p>
<p class="intro_text_body_lower">
Enter your name in the field to the right and generate your one-of-a-kind robot-employee ID-badge!
</p>
</div>
<div class="cardmaker">
<image id="cardmaker_image" src="#"></image>
<input type="text" id="userinput">
<button id="button_userinput">Generate badge!</button>
</div>
</div>
<a name="businesscard"></a>
<div class="div_businesscard">
<div class="generated_card">
<div class="generated_card_top">
<img id="card_image" src="">
<div>
<span id="card_username"></span>
<span id="card_jobtitle">Business Integration Specialist</span>
</div>
</div>
<div class="generated_card_bottom">
<div class="basic_info">
<span id="employee_ID">This is the employee-ID</span>
<span id="employee_Telephone">This is the telephonenumber</span>
<span id="employee_Email">This is the email</span>
</div>
<div class="div_links">
<img src="./images/QRcode.png" class="QRcode">
</div>
</div>
</div>
<button id="button_backToTop" class="button_backToTop">Back to top</button>
</div>
</div>
</div>
<script type="text/javascript" src="./scripts.js"></script>
</body>
</html>