-
Notifications
You must be signed in to change notification settings - Fork 0
/
website2.html
55 lines (49 loc) · 1.39 KB
/
website2.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
input {
margin-top: 2px;
font-family: Montserrat;
border: none;
border-radius: 15px;
display: block;
width: 76%;
font-size: 16px;
padding: 12px 20px;
background-image: url('searchIcon.png');
background-position: 99%;
background-size: 12px 12px;
background-repeat: no-repeat;
display:inline-block;
}
input:focus {
background-color: lightblue;
border: none;
border-radius: 15px;
outline: none;
}
model-viewer {
margin-top: 5px;
float: left;
width: 40px;
height: 40px;
}
h1 {
margin-top: 5px;
font-family: Montserrat;
font-size: 40px;
color: aliceblue;
display:inline-block;margin-right:10px;
}
@font-face {
font-family: Mont;
src: url(Montserrat-Regular.ttf);
}
</style>
</head>
<body style="background-color: #073763ff;">
<model-viewer src="duck.glb" camera-controls auto-rotate auto-rotate-delay=10000 rotation-per-second="45deg" interaction-prompt=none camera-orbit="45deg 80deg" shadow-intensity="0" onclick="myFunction()" class="center" class="space"></model-viewer>
<h1 class="name" class="space" style="font-family: Mont;">RubberDuck</h1>
<input type="text" id="pEnter" class='input' style="font-family: Mont;" placeholder="What's your problem?">
</body>