-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex_v6.html
112 lines (80 loc) · 2.93 KB
/
index_v6.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
<!DOCTYPE html>
<html>
<head>
<title>v6</title>
<link rel="stylesheet" type="text/css" href="v6.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container" style=" background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(82,111,155,1) 100%); ">
<div class="header">
<div> <!--css grid 6-->
<img src="eyes.png" alt="womans face">
</div>
<div>
<p>LEVEL3DIGITAL</p>
<p>"JOIN THE REVOLUTION"</p>
</div>
</div>
</div>
<div class="container" style="background-color: #EEE62C; border-style:solid; border-color:blue;">
<div class="header">
<div> <!--css grid 6-->
<p>mySHOUT.US<i class="fa fa-bullhorn"></i><p>
<p>Get your shout on the web.<p>
</div>
<div>
<p><a href="#">JOIN</a> | <a href="#">LOGIN</a> | <a href="#">ABOUT</a></p>
<input type="text">
<p>SEARCH</p>
</div>
</div>
</div>
<div class="container" style="background-color:rgba(192,192,192,0.3); border-style:solid; border-color:orange;">
<div class="intro">
<div>
<img src="yo.jpg" alt="Jesse"><!-- background img of pic to match -->
<p><a href="#">VIEW MY PIX</a> | <a href="#">JOIN MY LIST</a></p>
</div>
<div>
<img src="" alt="KRYSTAL SHIP">
<h3>cap'n cooks</h3>
<p>STATUS: Single, Baby, Single!</br />
HERE FOR: Hook ups<br />
BODY TYPE: Lean & Mean<br />
ETHNICITY: I'm totally cool with ethnics -Black, Mexican, whatever...as long as you're SMOKIN' HOT, YO!
<p>
</div>
</div>
</div>
<div class="container">
<p>CSS Grid Method</p>
<div class="image-stack"> <!-- in order to use css grid u need to have grid be in the css-->
<!-- Initial plan was to have the below which works be one piece and then have the other images just be aligned above but now thinking of it - might as well have all of the elements in the one container with staggering height percentages-->
<div class="image-stack__item image-stack__item--top">
<p style="border-style:solid; border-color:red; height:90%; ">
</p>
</div>
<div class="image-stack__item image-stack__item--bottom">
<img src="main_pic_crop.png" alt="">
</div>
<div class="image-stack__item image-stack__item--top-2">
<p style="padding:5px;">GENERAL INTERESTS:<br \>Fine herbage! Keepin' it real, Jui Ryo Ki Kung-Fu (Blue belt with shuriken certification). Banging the skins with my smokin band 'TwaughtHammer'. European motocross (plan to attend Wheelie School in Vegas this summer).<br /> MILF's,MILF's,MILF's,MILF's!<br />
<br />
EDUCATION:<br />
J.P Wynne High School, DeVry University data systems management...<br />
The STREETS, YO!</p>
</div>
</div>
<div class="container" style="border-style:solid; border-color:purple;">
<div class="header">
<div>
<p>WASHING BITCHES</p>
<img src="washing_bitches.jpg" alt="face in tv">
</div>
</div>
</div>
</div>
</body>
</html>